Difference between revisions of "Pivot.js"
From CNAC
TomHutchison (talk | contribs) (Created page with "$(document).ready(function(){ (function(d, w) { if (w.self !== w.top) { $('#sidebar').css('display', 'none'); } }(document.documentElement, window)); });") |
TomHutchison (talk | contribs) m |
||
| Line 2: | Line 2: | ||
(function(d, w) { | (function(d, w) { | ||
if (w.self !== w.top) { | if (w.self !== w.top) { | ||
| − | $('#sidebar').css('display', 'none'); | + | $('#sidebar').css('display', 'none !important'); |
} | } | ||
}(document.documentElement, window)); | }(document.documentElement, window)); | ||
}); | }); | ||
Revision as of 15:49, 8 March 2020
$(document).ready(function(){
(function(d, w) {
if (w.self !== w.top) {
$('#sidebar').css('display', 'none !important');
}
}(document.documentElement, window));
});