Procházet zdrojové kódy

window load inside ready state will not always trigger

Issue since jquery 3. More info can be found here:

https://github.com/jquery/jquery/issues/3194
tags/v1.0.0
djro před 6 roky
rodič
revize
399f22fb07
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 12 přidání a 11 odebrání
  1. 12
    11
      assets/js/script.js

+ 12
- 11
assets/js/script.js Zobrazit soubor

@@ -1,16 +1,6 @@
jQuery(function ($) {
"use strict";

/* ========================================================================= */
/* Page Preloader
/* ========================================================================= */

// Preloader js
$(window).on('load', function () {
$('#preloader').fadeOut(700);
});


/* ========================================================================= */
/* Post image slider
/* ========================================================================= */
@@ -169,6 +159,17 @@ jQuery(function ($) {
// End Jquery Function


/* ========================================================================= */
/* Page Preloader
/* ========================================================================= */

// Preloader js
$(window).on('load', function () {
$('#preloader').fadeOut(700);
});



/* ========================================================================= */
/* Animated section
/* ========================================================================= */
@@ -308,4 +309,4 @@ function initialize() {

// Check init google maps only if "google" has been defined.
if("google" in window)
google.maps.event.addDomListener(window, "load", initialize);
google.maps.event.addDomListener(window, "load", initialize);

Načítá se…
Zrušit
Uložit