Created
September 15, 2016 13:52
-
-
Save newvertex/66a1fbdafc84ba39219137474d60e117 to your computer and use it in GitHub Desktop.
Add LiveReload to current Document
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Replace with your current LiveReload url | |
var liveReloadUrl = 'http://localhost:35729/livereload.js'; | |
function liveReload(url){ | |
var liveReloadTag = document.createElement('script'); | |
liveReloadTag.type = 'text/javascript'; | |
liveReloadTag.src = url; | |
document.body.appendChild(liveReloadTag); | |
} | |
liveReload(liveReloadUrl); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment