Changes

From Drawn to Life Wiki
386 bytes removed ,  03:54, 23 June 2022
chrome test
Line 1: Line 1: −
/* All JavaScript here will be loaded for users of the Timeless skin */
  −
$(document).ready(function(){
  −
  setTimeout(removeLoader, 120); //wait for page load PLUS 0.12 seconds.
  −
});
  −
function removeLoader(){
  −
    $( "#smooth-loader" ).fadeOut(500, function() {
  −
      // fadeOut complete. Remove the loading div
  −
      $( "#smooth-loader" ).remove(); //makes page more lightweight
  −
  }); 
  −
}
  −