Changes

From Drawn to Life Wiki
no edit summary
Line 1: Line 1:  
/* All JavaScript here will be loaded for users of the Timeless skin */
 
/* All JavaScript here will be loaded for users of the Timeless skin */
 +
$(window).on('load', function(){
 +
  setTimeout(removeLoader, 2000); //wait for page load PLUS two seconds.
 +
});
 +
function removeLoader(){
 +
    $( "#smooth-loader" ).fadeOut(500, function() {
 +
      // fadeOut complete. Remove the loading div
 +
      $( "#smooth-loader" ).remove(); //makes page more lightweight
 +
  }); 
 +
}
 +
 +
 +
 
//Wii
 
//Wii
 
if ($.inArray("Drawn to Life: The Next Chapter (Wii)", mw.config.get('wgCategories')) > -1) {
 
if ($.inArray("Drawn to Life: The Next Chapter (Wii)", mw.config.get('wgCategories')) > -1) {