/
home
/
vianto5
/
hidalgoresidences.mx
/
wp-content
/
themes
/
Bridge100
/
bridge
/
js
/
/home/vianto5/hidalgoresidences.mx/wp-content/themes/Bridge100/bridge/js
mkdir
upload
Name
Size
Mode
Actions
admin/
-
0755
rm
plugins/
-
0755
rm
ajax.js
33153
0644
edit
dl
rm
ajax.min.js
19784
0644
edit
dl
rm
bigtext.js
9459
0644
edit
dl
rm
bootstrap.carousel.js
7535
0644
edit
dl
rm
Chart.min.js
32184
0644
edit
dl
rm
custom_js.js
85
0644
edit
dl
rm
custom_js.php
610
0644
edit
dl
rm
default-temp.js
354007
0644
edit
dl
rm
default.js
388053
0644
edit
dl
rm
default.min.js
208559
0644
edit
dl
rm
default_dynamic.js
3923
0644
edit
dl
rm
default_dynamic.php
10353
0644
edit
dl
rm
doubletaptogo.js
890
0644
edit
dl
rm
flashmediaelement.swf
29142
0644
edit
dl
rm
html5.js
2001
0644
edit
dl
rm
jplayer.min.js
42856
0644
edit
dl
rm
jquery-1.10.2.min.js
93063
0644
edit
dl
rm
jquery.appear.js
4202
0644
edit
dl
rm
jquery.carouFredSel-6.2.1.js
91084
0644
edit
dl
rm
jquery.carouFredSel-6.2.1.min.js
62633
0644
edit
dl
rm
jquery.easing.1.3.js
8097
0644
edit
dl
rm
jquery.fitvids.js
4979
0644
edit
dl
rm
jquery.flexslider-min.js
22342
0644
edit
dl
rm
jquery.fullPage.min.js
23679
0644
edit
dl
rm
jquery.hoverIntent.min.js
1464
0644
edit
dl
rm
jquery.isotope.js
43330
0644
edit
dl
rm
jquery.isotope.min.js
35624
0644
edit
dl
rm
jquery.justifiedGallery.min.js
17827
0644
edit
dl
rm
jquery.mousewheel.min.js
1392
0644
edit
dl
rm
jquery.multiscroll.min.js
13427
0644
edit
dl
rm
jquery.nicescroll.min.js
56878
0644
edit
dl
rm
jquery.prettyPhoto.js
21506
0644
edit
dl
rm
jquery.sticky-kit.min.js
2798
0644
edit
dl
rm
jquery.stretch.js
4153
0644
edit
dl
rm
jquery.stylish-select.min.js
8275
0644
edit
dl
rm
jquery.touchSwipe.min.js
11805
0644
edit
dl
rm
jquery.waitforimages.js
5171
0644
edit
dl
rm
lemmon-slider.js
13110
0644
edit
dl
rm
lemmon-slider.min.js
6059
0644
edit
dl
rm
mediaelement-and-player.min.js
71027
0644
edit
dl
rm
modernizr-2.6.2.min.js
15414
0644
edit
dl
rm
plugins.js
484525
0644
edit
dl
rm
qode-like.js
1034
0644
edit
dl
rm
qode-like.min.js
592
0644
edit
dl
rm
ScrollToPlugin.min.js
2533
0644
edit
dl
rm
select2.min.js
60215
0644
edit
dl
rm
skrollr.js
40194
0644
edit
dl
rm
smoothPageScroll.js
971
0644
edit
dl
rm
smoothPageScroll.min.js
667
0644
edit
dl
rm
SmoothScroll.js
11275
0644
edit
dl
rm
toolbar.js
294
0644
edit
dl
rm
TweenLite.min.js
25452
0644
edit
dl
rm
waypoints.min.js
8064
0644
edit
dl
rm
woocommerce.js
2942
0644
edit
dl
rm
woocommerce.min.js
8070
0644
edit
dl
rm
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));
Save
cmd:
run