Wikia.js
MediaWiki page
495pages on
this wiki
Add New Page
this wiki
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).
/* Add modules to the right rail */ /* Commenting Out Per BizDev Request Temporarily var rightRailModules = { config: { loadOnNamespaces: [0] }, checkRail: 0, addModules: function() { var railHasLoaded = $("#WikiaRail .rail-module").length > 0; if (railHasLoaded) { clearInterval(this.checkRail); this.addCTABanner(); } }, addCTABanner: function() { var addBefore = $('#wikia-recent-activity'), bannerHTML = '<div class="cta-banner" style="margin: 15px 0;"><a href="http://bs.serving-sys.com/serving/adServer.bs?cn=trd&mc=click&pli=20628738&PluID=0&ord=%%CACHEBUSTER%%"><img alt="Pre-order now" src="http://vignette2.wikia.nocookie.net/prey/images/d/de/PreyPreOrder.png/revision/latest?cb=20170227213249"><a></div>'; addBefore.before(bannerHTML); }, init: function() { var thisObject = this; if (($.inArray(mw.config.get('wgNamespaceNumber'), this.config.loadOnNamespaces) > -1) && !mw.config.get('wgIsMainPage')) { this.checkRail = setInterval(function() { thisObject.addModules(); }, 750); } } } $(function() { rightRailModules.init(); }); */