Skip to content

Instantly share code, notes, and snippets.

@csarven
Created March 6, 2015 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csarven/6a914fda69736dcb3760 to your computer and use it in GitHub Desktop.
Save csarven/6a914fda69736dcb3760 to your computer and use it in GitHub Desktop.
$('#views.lr button').on('click', function(event) {
var selected = $(this);
$('head link[rel~="stylesheet"]:not([href$="lr.css"])').each(function(i, stylesheet) {
var s = $(this);
if (s.prop('title').toLowerCase() == selected.text().toLowerCase()) {
s.prop('rel', 'stylesheet');
}
else {
s.prop('rel', 'stylesheet alternate');
}
stylesheet.parentNode.replaceChild(stylesheet, s.get(0));
});
$('#views.lr button:disabled').removeAttr('disabled');
$(this).attr('disabled', 'disabled');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment