Welcome to Assassin's Creed Wiki! Log in and join the community.
User:AcademicWasteland/wikia.js
Jump to navigation
Jump to search
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
function CreateContentResizeButton() {
var headerWidth = $('header#WikiaPageHeader.WikiaPageHeader details').width();
var contentWidth = $('article#WikiaMainContent.WikiaMainContent').width();
var catlinksWidth = $('div#catlinks.catlinks').width();
if(contentWidth < 1000) {
$('header#WikiaPageHeader.WikiaPageHeader details').css({"width": '980px'});
$('article#WikiaMainContent.WikiaMainContent').css({"width": '1000px'});
$('div#catlinks.catlinks').css({"width": '1000px'});
$('div#WikiaRail.WikiaRail').css({"display": 'none'});
$('section article header ul.wikia-menu-button').after('<ul class="wikia-menu-button" id="resizeButton" style="margin-left:10px"><a onclick="CompressContent();" data-id="resizeButton" style="color:#fff;" title="Compress the content area back to its original width, and restore the side rail."> Compress >--< </a></ul>');
$('section article header a.wikia-button').after('<ul class="wikia-menu-button" id="resizeButton" style="margin-left:10px"><a onclick="CompressContent();" data-id="resizeButton" style="color:#fff;" title="Compress the content area back to its original width, and restore the side rail."> Compress >--< </a></ul>');
$('section article header a.view-source').after('<ul class="wikia-menu-button" id="resizeButton" style="margin-left:10px"><a onclick="CompressContent();" data-id="resizeButton" style="color:#fff;" title="Compress the content area back to its original width, and restore the side rail."> Compress >--< </a></ul>');
if(wgCanonicalNamespace == 'User_blog') {
$('section article div#WikiaUserPagesHeader a.wikia-button').after('<ul class="wikia-menu-button" id="resizeButton" style="margin-left:10px"><a onclick="CompressContent();" data-id="resizeButton" style="color:#fff;" title="Compress the content area back to its original width, and restore the side rail."> Compress >--< </a></ul>');
}
}
}