runfirst.js 319 B

12345678910111213141516
  1. function startLoading() {
  2. console.log("Loading ...");
  3. $("#loading").removeClass('hide');
  4. }
  5. function stopLoading() {
  6. setTimeout(function () {
  7. $("#loading").addClass('hide');
  8. }, 10);
  9. }
  10. window.onpageshow = function (event) {
  11. if (event.persisted) {
  12. window.location.reload()
  13. }
  14. };