Created
February 7, 2015 05:28
-
-
Save kenng/a94c2c420fc7df3167b9 to your computer and use it in GitHub Desktop.
This file contains 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
// cssreload.js | |
// https://github.com/bgrins/devtools-snippets | |
// Removes then reloads all the CSS files in the current page | |
(function () { | |
function insertAfter(newElement, targetElement) { | |
var parent = targetElement.parentNode; | |
if (parent.lastChild == targetElement) { | |
parent.appendChild(newElement); | |
} else { | |
parent.insertBefore(newElement, targetElement.nextSibling); | |
} | |
} | |
function reloadStyleSheet(stylesheet) { | |
var element = stylesheet.ownerNode; | |
var clone = element.cloneNode(false); | |
clone.href = addRandomToUrl(clone.href); | |
clone.addEventListener("load", function() { | |
if (element.parentNode) { | |
element.parentNode.removeChild(element); | |
} | |
}); | |
insertAfter(clone, element); | |
} | |
function addRandomToUrl(input) { | |
// prevent CSS caching | |
var hasRnd = /([?&])_=[^&]*/, | |
hasQueryString = /\?/, | |
hasHash = /(.+)#(.+)/, | |
hash = null, | |
rnd = Math.random(); | |
var hashMatches = input.match(hasHash); | |
if (hashMatches) { | |
input = hashMatches[1]; | |
hash = hashMatches[2]; | |
} | |
url = hasRnd.test(input) ? | |
input.replace(hasRnd, "$1_=" + rnd) : | |
input + (hasQueryString.test(input) ? "&" : "?") + "_=" + rnd; | |
if (hash) url += '#' + hash; | |
return url; | |
} | |
[].forEach.call(document.styleSheets, function(styleSheet) { | |
if (!styleSheet.href) return; | |
console.log('reload ' + styleSheet.href); | |
reloadStyleSheet(styleSheet); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment