Skip to content

Commit dea4ff4

Browse files
committed
1.0.2
1 parent 822364d commit dea4ff4

29 files changed

+36
-35
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -804,6 +804,7 @@ Note that any of Lazy Load XT `dist` files may be loaded from CDN, not only `jqu
804804
805805
## Version History
806806
807+
- [**1.0.2**](https://github.com/ressio/lazy-load-xt/tree/1.0.2) (05.03.2014): fix work in jQuery Mobile 1.4
807808
- [**1.0.1**](https://github.com/ressio/lazy-load-xt/tree/1.0.1) (16.02.2014): fix triggering `lazyload` and `lazyerror`
808809
events in `scrset` and `picture` addons
809810
- [**1.0.0**](https://github.com/ressio/lazy-load-xt/tree/1.0.0) (16.01.2014): new `forceLoad` option, `classNojs`

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lazyloadxt",
33
"description": "Lazy Load XT is mobile-oriented, fast and extensible jQuery plugin for lazy loading of images, videos and other media with built-in support of jQueryMobile framework. It improves performance of website by loading visible media elements only, and elements below the fold are loaded after page scroll. The plugin has many options, supports callbacks and special lazy events, that allows to have different loading effects (e.g. fade in and spinner effects). Examples of plugin and its addons include ajax, background images, infinite scroll, horizontal scroll, iframe-based widgets (YouTube, Vimeo, Google Maps Engine Lite, Facebook recommend button, Google+ profile), html5 video, responsive images with retina support (srcset and picture polyfills), social widgets (embedded tweet, Twitter share button, Google Plus badge and share button, Facebook like and recommend buttons, Facebook post comments), load all images before print, etc. Tested in IE 6-11, Chrome 1-31, Firefox 1.5-27.0, Safari 3-7, Opera 10.6-18.0, iOS 5-7, Android 2.3-4.4, and WP8. Requires jQuery 1.7+ or Zepto 1.0+.",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"main": ["dist/jquery.lazyloadxt.js", "dist/jquery.lazyloadxt.extra.js"],
66
"authors": ["RESS.io"],
77
"homepage": "http://ressio.github.io/lazy-load-xt",

dist/jquery.lazyloadxt.autoload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.autoload.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.bg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.bg.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.extra.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */
@@ -263,7 +263,6 @@
263263
*/
264264
function initLazyElements() {
265265
$window.lazyLoadXT();
266-
queueCheckLazyElements();
267266
}
268267

269268

@@ -286,6 +285,8 @@
286285
.on(options.updateEvent, queueCheckLazyElements)
287286
.on(options.forceEvent, forceLoadAll);
288287

288+
$(document).on(options.updateEvent, queueCheckLazyElements);
289+
289290
if (options.autoInit) {
290291
initLazyElements(); // standard initialization
291292
}

dist/jquery.lazyloadxt.extra.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.fadein.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.fadein.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
/* Lazy Load XT 1.0.1 | MIT License */
1+
/* Lazy Load XT 1.0.2 | MIT License */
22

33
.lazy-hidden{opacity:0}.lazy-loaded{-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s;opacity:1}

dist/jquery.lazyloadxt.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */
@@ -263,7 +263,6 @@
263263
*/
264264
function initLazyElements() {
265265
$window.lazyLoadXT();
266-
queueCheckLazyElements();
267266
}
268267

269268

@@ -286,6 +285,8 @@
286285
.on(options.updateEvent, queueCheckLazyElements)
287286
.on(options.forceEvent, forceLoadAll);
288287

288+
$(document).on(options.updateEvent, queueCheckLazyElements);
289+
289290
if (options.autoInit) {
290291
initLazyElements(); // standard initialization
291292
}

dist/jquery.lazyloadxt.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.picture.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.picture.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.print.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.print.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.script.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.spinner.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
/* Lazy Load XT 1.0.1 | MIT License */
1+
/* Lazy Load XT 1.0.2 | MIT License */
22

33
.lazy-hidden{background:#eee url(loading.gif) no-repeat 50% 50%}

dist/jquery.lazyloadxt.srcset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.srcset.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.video.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.video.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.lazyloadxt.widget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Lazy Load XT v1.0.1 2014-02-17
1+
/*! Lazy Load XT v1.0.2 2014-03-05
22
* http://ressio.github.io/lazy-load-xt
33
* (C) 2014 RESS.io
44
* Licensed under MIT */

dist/jquery.lazyloadxt.widget.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)