Note: After saving, you may have to bypass your browser's cache to see the changes.
- Chrome - Windows: Hold the Ctrl key and press the F5 key. OS X: Hold both the ⌘ Cmd and ⇧ Shift keys and press the R key.
- Safari - Hold down the ⇧ Shift key and click the Reload toolbar button.
- Firefox - Windows: Hold the Ctrl key, and press F5. OS X: Hold the ⌘ Cmd and ⇧ Shift keys, and then press R.
- Internet Explorer - Hold the Ctrl key, and press F5 (or click the Refresh button).
/*Search Enhancements - by ShermanTheMythran (special thanks to Lunarity)*/ $('.Search .WikiaSearch input[name="search"]').attr('placeholder','Search this wiki'); $('.Search .WikiaSearch input[name="search"]').attr('placeholder','Search this wiki'); mediaWiki.loader.load('jquery.ui.core', null, true); mediaWiki.loader.using('jquery.ui.core', function() { "use strict"; $('body').on('keypress.WikiaSearchHack', function(ev) { if (ev.ctrlKey || ev.altKey || ev.metaKey || !ev.which || $(ev.target).is(':focusable')) { return; } ev.preventDefault(); var $box = $('#WikiaSearch > input[type="text"]').focus(); $box.val($box.val() + (ev.key || String.fromCharCode(ev.charCode))); } ); } ); /*External Links - by ShermanTheMythran*/ $('.links a, .wikis a, a.external, .WikiNav > ul > li:last-child > .subnav-2 > li:first-child > .subnav-2a, .WikiNav > ul > li:last-child > .subnav-2 > li > .subnav-3 > li > .subnav-3a').attr('target', '_blank'); /*jQuery Cookie Plugin*/ importScriptPage('MediaWiki:Cookies.js','lustories'); /*Fixed Collapsible Header Toolbar - by ShermanTheMythran*/ //Code relies on jQuery Cookie Plugin $('.wikia-header-mask').before('<div id="HeaderCollapse" class="expanded"><span>▲</span><style type="text/css">#HeaderCollapse{position:fixed;z-index:-1;right:10px;width:30px;margin:34px 0 0;background:#A7D723;background:rgba(167,215,35,.7);color:white;text-align:center;border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;cursor:pointer}#WikiaHeader{width:100% !important;position:fixed;transition:margin .5s;-moz-transition:margin .5s;-webkit-transition:margin .5s;-o-transition:margin .5s}#HeaderCollapse span{display:block;transition:transform .5s;-moz-transition:-moz-transform .5s;-webkit-transition:-webkit-transform .5s;-o-transition:-o-transform .5s}.WikiaTopAds{top:34px;padding:20px 0 !important;transition:top .5s;-moz-transition:top .5s;-webkit-transition:top .5s;-o-transition:top .5s}#WikiaPage{top:50px;transition:top .5s;-moz-transition:top .5s;-webkit-transition:top .5s;-o-transition:top .5s}#HeaderCollapse.expanded span{transform:rotateY(0deg);-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-ms-transform:scaleX(1);-o-transform:scaleX(1)}#HeaderCollapse.collapsed span{transform:rotateX(180deg);-moz-transform:rotateX(180deg);-webkit-transform:rotateX(180deg);-ms-transform:scaleY(-1);-o-transform:scaleY(-1)}</style></div>'); var collapseHeader = function() { $('#HeaderCollapse').removeClass('expanded').addClass('collapsed').unbind().bind('click',expandHeader); $('#WikiaHeader').css('marginTop','-=34px'); $('#WikiaPage').css('top','-=34px'); $.cookie('headerCollapse','collapsed',{expires: 365}); }; var expandHeader = function() { $('#HeaderCollapse').removeClass('collapsed').addClass('expanded').unbind().bind('click',collapseHeader); $('#WikiaHeader').css('marginTop','+=34px'); $('#WikiaPage').css('top','+=34px'); $.removeCookie('headerCollapse'); }; $('#HeaderCollapse').click(collapseHeader); var hcCookie = $.cookie('headerCollapse'); if(hcCookie == "collapsed") { $(collapseHeader); } /*Fixed Collapsible Footer Toolbar - by ShermanTheMythran*/ //Code relies on jQuery Cookie Plugin $('.wikia-bar').before('<div id="FooterCollapse" class="expanded"><span>▼</span><style type="text/css">#FooterCollapse{position:absolute;z-index:-1;right:10px;width:30px;bottom:25px;background:#A7D723;background:rgba(167,215,35,.7);color:white;text-align:center;border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;cursor:pointer}#FooterCollapse span{display:block;transition:transform .5s;-moz-transition:-moz-transform .5s;-webkit-transition:-webkit-transform .5s;-o-transition:-o-transform .5s}#WikiaPage{margin-bottom:41px}.WikiaBarWrapper{transition:bottom .5s;-moz-transition:bottom .5s;-webkit-transition:bottom .5s;-o-transition:bottom .5s}#FooterCollapse.expanded span{transform:rotateY(0deg);-moz-transform:rotateY(0deg);-webkit-transform:rotateY(0deg);-ms-transform:scaleX(1);-o-transform:scaleX(1)}#FooterCollapse.collapsed span{transform:rotateX(180deg);-moz-transform:rotateX(180deg);-webkit-transform:rotateX(180deg);-ms-transform:scaleY(-1);-o-transform:scaleY(-1)}.WikiaBarCollapseWrapper,#WikiaBarWrapper .arrow{display:none}</style></div>'); var collapseFooter = function() { $('#FooterCollapse').removeClass('expanded').addClass('collapsed').unbind().bind('click',expandFooter); $('#WikiaBarWrapper').css('bottom','-25px'); $('#WikiaPage').css('marginBottom','-=25px'); $.cookie('footerCollapse','collapsed',{expires: 365}); }; var expandFooter = function() { $('#FooterCollapse').removeClass('collapsed').addClass('expanded').unbind().bind('click',collapseFooter); $('#WikiaBarWrapper').css('bottom','0px'); $('#WikiaPage').css('marginBottom','+=25px'); $.removeCookie('footerCollapse'); }; $('#FooterCollapse').click(collapseFooter); $('.WikiaBarWrapper').css('bottom','0px'); var fcCookie = $.cookie('footerCollapse'); if(fcCookie == "collapsed") { $(collapseFooter); } /*Fix Domain Namespace - by ShermanTheMythran*/ $('.ns-4 .WikiaPageHeader > h1').html(wgTitle); $('.ns-4 .WikiaPageHeader > .tally').after('<h2>' + wgSiteName + ' page</h2>'); /*Spoilers - by ShermanTheMythran*/ //couples with Template:Spoiler $('.spoiler > .spoilerTrigger').toggle(function() { $(this).parent().children('.spoilerTrigger').html('Hide spoiler'); $(this).parent().children('.spoilerText').fadeToggle();}, function() { $(this).parent().children('.spoilerTrigger').html('Show spoiler'); $(this).parent().children('.spoilerText').fadeToggle(); } ); /*Simple Gallery - by ShermanTheMythran*/ //couples with Template:Episode $('.episode .bubble').click(function() { $('.episode .bubble').addClass('inactive'); $(this).removeClass('inactive'); } ); $('.episode .bubble.one').click(function() { $('.img-1').slideDown(); $('.img-2').slideUp(); } ); $('.episode .bubble.two').click(function() { $('.img-1').slideUp(); $('.img-2').slideDown(); } ); /*Various Enhancements - by ShermanTheMythran*/ $('#my-tools-menu').addClass('WikiaMenuElement'); $('.mediawiki').addClass(wgUserName); $('.shortcut > a').attr('title','shortcut'); $('.WikiNav > ul > li:first-child').addClass('liActive'); $('.WikiNav > ul > li').mouseenter(function() { $('.WikiNav > ul > li').removeClass('liActive'); $(this).addClass('liActive'); } ); /* * ADVANCED AJAX AUTO-REFRESHING ARTICLES * Code originally by "pcj" of Wowpedia * Maintenance, cleanup, style and bug fixes by Grunny (http://community.wikia.com/wiki/User:Grunny) */ /* Heavily modified by ShermanTheMythran and Seaside98 */ var ajaxIndicator = ajaxIndicator || 'http://images.wikia.com/psychusa/images/2/29/Loader.gif', ajaxTimer, ajaxRefresh = 4000, refreshText = 'Refresh', refreshHover = 'Check to automatically refresh the content of the page', doRefresh = true; if ( !window.ajaxPages ) { var ajaxPages = [ 'Special:RecentChanges', 'Special:Log', 'Special:WikiActivity', 'Special:WikiActivity/activity', 'Special:WikiActivity/watchlist' ]; } if ( !window.ajaxCallAgain ) { var ajaxCallAgain = []; } if( typeof AjaxRCRefreshText == "string" ) { refreshText = AjaxRCRefreshText; } if( typeof AjaxRCRefreshHoverText == "string" ) { refreshHover = AjaxRCRefreshHoverText; } /** * Sets the cookie * @param c_name string Name of the cookie * @param value string 'on' or 'off' * @param expiredays integer Expiry time of the cookie in days */ function setCookie( c_name, value, expiredays ) { var exdate = new Date(); exdate.setDate( exdate.getDate() + expiredays); document.cookie = c_name + "=" + escape(value) + ( ( expiredays === null ) ? "" : ";expires=" + exdate.toGMTString() ); } /** * Gets the cookie * @param c_name string Cookie name * @return The cookie name or empty string */ function getCookie( c_name ) { if ( document.cookie.length > 0 ) { var c_start = document.cookie.indexOf( c_name + "=" ); if ( c_start !== -1 ) { c_start = c_start + c_name.length + 1; var c_end = document.cookie.indexOf( ";", c_start ); if ( c_end === -1 ) { c_end = document.cookie.length; } return unescape( document.cookie.substring( c_start, c_end ) ); } } return ""; } /** * Main function to start the Auto-refresh process */ function preloadAJAXRL() { var ajaxRLCookie = ( getCookie( "ajaxload-" + wgPageName ) == "on" ) ? true : false; if ( wgPageName == "Special:WikiActivity" || wgPageName == "Special:WikiActivity/watchlist" || wgPageName == "Special:WikiActivity/activity" ) { appTo = ( $( '#WikiaPageHeader' ).length ) ? $( '#WikiaPageHeader .activity-nav ul' ) : ( $( '#AdminDashboardHeader' ).length ? $( '#AdminDashboardHeader > h1' ) : $( '.firstheading' ) ); } else { appTo = ( $( '#WikiaPageHeader' ).length ) ? $( '#WikiaPageHeader > h2' ) : ( $( '#AdminDashboardHeader' ).length ? $( '#AdminDashboardHeader > h1' ) : $( '.firstheading' ) ); }; appTo.append( '<li style="border-left:1px solid #CCC;height:15px;list-style:none;display:inline;margin:0 0 0 6px;padding:2px 0 1px 3px" id="ajaxRefresh"><input type="checkbox" style="margin-top:1px;position:absolute" id="ajaxToggle"><span id="ajaxLoadProgress" style="opacity:0;filter:alpha(opacity=0);position:absolute;height:24px;width:24px;transition:opacity .5s;-moz-transition:opacity .5s;-webkit-transition:opacity .5s;-o-transition:opacity .5s;background-image:url(' + ajaxIndicator + ');margin:-4px 0 0 20px"></span><style type="text/css">#WikiaPageHeader{padding-bottom:9px}.AdminDashboardHeader #ajaxRefresh{margin-top:9px !important;position:absolute}</style></li>' ); $( '#ajaxLoadProgress' ).ajaxSend( function ( event, xhr, settings ) { if ( location.href == settings.url ) { $( this ).css({'opacity':'1','filter':'alpha(opacity=100)'}); } } ).ajaxComplete ( function ( event, xhr, settings ) { var $collapsibleElements = $( '#mw-content-text' ).find( '.mw-collapsible' ); if ( location.href == settings.url ) { $( this ).css({'opacity':'0','filter':'alpha(opacity=0)'}); for ( var i = 0; i < ajaxCallAgain.length; i++ ) { ajaxCallAgain[i](); } if ( $collapsibleElements.length ) { $collapsibleElements.makeCollapsible(); } if ( mw.config.get( 'wgNamespaceNumber' ) === -1 && mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' ) { mw.special.recentchanges.init(); if ( $( '.mw-recentchanges-table' ).find( '.WikiaDropdown' ).length ) { RecentChangesLocal.init(); } } } } ); $( '#ajaxToggle' ).click( toggleAjaxReload ); $( '#ajaxToggle' ).attr( 'checked', ajaxRLCookie); if ( getCookie( "ajaxload-" + wgPageName ) == "on" ) { loadPageData(); } } /** * Turn refresh on and off by toggling the checkbox */ function toggleAjaxReload() { if ( $( '#ajaxToggle' ).prop( 'checked' ) === true ) { setCookie( "ajaxload-" + wgPageName, "on", 30 ); doRefresh = true; loadPageData(); } else { setCookie( "ajaxload-" + wgPageName, "off", 30 ); doRefresh = false; clearTimeout( ajaxTimer ); } } /** * Does the actual refresh */ function loadPageData() { var cC = '#mw-content-text'; $( cC ).load( location.href + " " + cC + " > *", function ( data ) { if ( doRefresh ) { ajaxTimer = setTimeout( loadPageData, ajaxRefresh ); } } ); } /** * Load the script on specific pages */ $( function () { for ( var x = 0; x < ajaxPages.length; x++ ) { if ( wgPageName == ajaxPages[x] && $( '#ajaxToggle' ).length === 0 ) { preloadAJAXRL(); } } } ); /** * Temp Hack: copy the RC filter JS since it can't be accessed */ var RecentChangesLocal = { init: function() { this.$table = $('.mw-recentchanges-table'); this.$dropdown = this.$table.find('.WikiaDropdown'); this.$submit = this.$table.find('input[type="submit"]'); this.$submit.on('click.RecentChangesDropdown', $.proxy(this.saveFilters, this)); this.$submit.removeAttr('disabled'); //FF clean this.dropdown = new Wikia.MultiSelectDropdown(this.$dropdown); this.dropdown.on('change', $.proxy(this.onChange, this)); }, saveFilters: function(event) { var self = this; event.preventDefault(); self.dropdown.disable(); self.$submit.attr('disabled', 'disabled'); if(self.dropdown.getSelectedValues().length == 0) { self.dropdown.doSelectAll(true); } $.nirvana.sendRequest({ controller: 'RecentChangesController', method: 'saveFilters', data: { filters: self.dropdown.getSelectedValues() }, type: 'POST', format: 'json', callback: function(data) { window.location.reload(); } }); } };
Community content is available under CC-BY-SA
unless otherwise noted.