/home/vianto5/hidalgoresidences.mx/wp-content/themes/Bridge100/bridge/js
NameSizeModeActions
admin/-0755rm
plugins/-0755rm
ajax.js331530644editdlrm
ajax.min.js197840644editdlrm
bigtext.js94590644editdlrm
bootstrap.carousel.js75350644editdlrm
Chart.min.js321840644editdlrm
custom_js.js850644editdlrm
custom_js.php6100644editdlrm
default-temp.js3540070644editdlrm
default.js3880530644editdlrm
default.min.js2085590644editdlrm
default_dynamic.js39230644editdlrm
default_dynamic.php103530644editdlrm
doubletaptogo.js8900644editdlrm
flashmediaelement.swf291420644editdlrm
html5.js20010644editdlrm
jplayer.min.js428560644editdlrm
jquery-1.10.2.min.js930630644editdlrm
jquery.appear.js42020644editdlrm
jquery.carouFredSel-6.2.1.js910840644editdlrm
jquery.carouFredSel-6.2.1.min.js626330644editdlrm
jquery.easing.1.3.js80970644editdlrm
jquery.fitvids.js49790644editdlrm
jquery.flexslider-min.js223420644editdlrm
jquery.fullPage.min.js236790644editdlrm
jquery.hoverIntent.min.js14640644editdlrm
jquery.isotope.js433300644editdlrm
jquery.isotope.min.js356240644editdlrm
jquery.justifiedGallery.min.js178270644editdlrm
jquery.mousewheel.min.js13920644editdlrm
jquery.multiscroll.min.js134270644editdlrm
jquery.nicescroll.min.js568780644editdlrm
jquery.prettyPhoto.js215060644editdlrm
jquery.sticky-kit.min.js27980644editdlrm
jquery.stretch.js41530644editdlrm
jquery.stylish-select.min.js82750644editdlrm
jquery.touchSwipe.min.js118050644editdlrm
jquery.waitforimages.js51710644editdlrm
lemmon-slider.js131100644editdlrm
lemmon-slider.min.js60590644editdlrm
mediaelement-and-player.min.js710270644editdlrm
modernizr-2.6.2.min.js154140644editdlrm
plugins.js4845250644editdlrm
qode-like.js10340644editdlrm
qode-like.min.js5920644editdlrm
ScrollToPlugin.min.js25330644editdlrm
select2.min.js602150644editdlrm
skrollr.js401940644editdlrm
smoothPageScroll.js9710644editdlrm
smoothPageScroll.min.js6670644editdlrm
SmoothScroll.js112750644editdlrm
toolbar.js2940644editdlrm
TweenLite.min.js254520644editdlrm
waypoints.min.js80640644editdlrm
woocommerce.js29420644editdlrm
woocommerce.min.js80700644editdlrm
Edit: /home/vianto5/hidalgoresidences.mx/wp-content/themes/Bridge100/bridge/js/jquery.waitforimages.js (5171B)
/* * waitForImages 1.4.2 * ------------------- * Provides a callback when all images have loaded in your given selector. * https://github.com/alexanderdickson/waitForImages * * Copyright (c) 2013 Alex Dickson * Licensed under the MIT license. */ (function ($) { // Namespace all events. var eventNamespace = 'waitForImages'; // CSS properties which contain references to images. $.waitForImages = { hasImageProperties: ['backgroundImage', 'listStyleImage', 'borderImage', 'borderCornerImage'] }; // Custom selector to find `img` elements that have a valid `src` attribute and have not already loaded. $.expr[':'].uncached = function (obj) { // Ensure we are dealing with an `img` element with a valid `src` attribute. if (!$(obj).is('img[src!=""]')) { return false; } // Firefox's `complete` property will always be `true` even if the image has not been downloaded. // Doing it this way works in Firefox. var img = new Image(); img.src = obj.src; return !img.complete; }; $.fn.waitForImages = function (finishedCallback, eachCallback, waitForAll) { var allImgsLength = 0; var allImgsLoaded = 0; // Handle options object. if ($.isPlainObject(arguments[0])) { waitForAll = arguments[0].waitForAll; eachCallback = arguments[0].each; // This must be last as arguments[0] // is aliased with finishedCallback. finishedCallback = arguments[0].finished; } // Handle missing callbacks. finishedCallback = finishedCallback || $.noop; eachCallback = eachCallback || $.noop; // Convert waitForAll to Boolean waitForAll = !! waitForAll; // Ensure callbacks are functions. if (!$.isFunction(finishedCallback) || !$.isFunction(eachCallback)) { throw new TypeError('An invalid callback was supplied.'); } return this.each(function () { // Build a list of all imgs, dependent on what images will be considered. var obj = $(this); var allImgs = []; // CSS properties which may contain an image. var hasImgProperties = $.waitForImages.hasImageProperties || []; // To match `url()` references. // Spec: http://www.w3.org/TR/CSS2/syndata.html#value-def-uri var matchUrl = /url\(\s*(['"]?)(.*?)\1\s*\)/g; if (waitForAll) { // Get all elements (including the original), as any one of them could have a background image. obj.find('*').andSelf().each(function () { var element = $(this); // If an `img` element, add it. But keep iterating in case it has a background image too. if (element.is('img:uncached')) { allImgs.push({ src: element.attr('src'), element: element[0] }); } $.each(hasImgProperties, function (i, property) { var propertyValue = element.css(property); var match; // If it doesn't contain this property, skip. if (!propertyValue) { return true; } // Get all url() of this element. while (match = matchUrl.exec(propertyValue)) { allImgs.push({ src: match[2], element: element[0] }); } }); }); } else { // For images only, the task is simpler. obj.find('img:uncached') .each(function () { allImgs.push({ src: this.src, element: this }); }); } allImgsLength = allImgs.length; allImgsLoaded = 0; // If no images found, don't bother. if (allImgsLength === 0) { finishedCallback.call(obj[0]); } $.each(allImgs, function (i, img) { var image = new Image(); // Handle the image loading and error with the same callback. $(image).bind('load.' + eventNamespace + ' error.' + eventNamespace, function (event) { allImgsLoaded++; // If an error occurred with loading the image, set the third argument accordingly. eachCallback.call(img.element, allImgsLoaded, allImgsLength, event.type == 'load'); if (allImgsLoaded == allImgsLength) { finishedCallback.call(obj[0]); return false; } }); image.src = img.src; }); }); }; }(jQuery));