Skip to content

Commit b781008

Browse files
committed
1.7.1
- this update will bring all plugins to cdnjs and jsDeliver CDN - some description changes
1 parent 5e62522 commit b781008

19 files changed

+33
-30
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,15 @@ If you get this you can install Lazy by different ways.
5454
Some examples below:
5555

5656
#### CDN
57-
Lazy is available over [cdnjs](http://cdnjs.com) and [jsDelivr](http://jsdelivr.com) CDN and can directly included to every page.
57+
Lazy and all plugins are available over [cdnjs](http://cdnjs.com) and [jsDelivr](http://jsdelivr.com) CDN and can directly included to every page.
5858
```HTML
59-
<!-- cdnjs -->
60-
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery.lazy/1.7.0/jquery.lazy.min.js"></script>
61-
6259
<!-- jsDeliver -->
63-
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.lazy/1.7.0/jquery.lazy.min.js"></script>
60+
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.lazy/1.7.1/jquery.lazy.min.js"></script>
61+
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.lazy/1.7.1/jquery.lazy.plugins.min.js"></script>
62+
63+
<!-- cdnjs -->
64+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery.lazy/1.7.1/jquery.lazy.min.js"></script>
65+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery.lazy/1.7.1/jquery.plugins.min.js"></script>
6466
```
6567

6668
#### Self-Hosted

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-lazy",
33
"description": "Lazy is a fast, feature-rich and lightweight delayed content loading plugin for jQuery and Zepto. It's designed to speed up page loading times and decrease traffic to your users by only loading the content in view. You can use Lazy in all vertical and horizontal scroll ways. It supports images in 'img' tags and backgrounds, supplied with css like 'background-image', by default. On those elements Lazy can set an default image or a placeholder while loading and supports retina displays as well. But Lazy is even able to load any other content you want by plugins and custom loaders.",
4-
"version": "1.7.0",
4+
"version": "1.7.1",
55
"main": "jquery.lazy.min.js",
66
"license": [
77
"MIT",

jquery.lazy.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - v1.7.0
2+
* jQuery & Zepto Lazy - v1.7.1
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern
@@ -14,14 +14,15 @@
1414
;(function(window, undefined) {
1515
"use strict";
1616

17+
// noinspection JSUnresolvedVariable
1718
/**
18-
* library instance - here and not in construct to be shorter in minization
19+
* library instance - here and not in construct to be shorter in minimization
1920
* @return void
2021
*/
2122
var $ = window.jQuery || window.Zepto,
2223

2324
/**
24-
* unique plugin instance id
25+
* unique plugin instance id counter
2526
* @type {number}
2627
*/
2728
lazyInstanceId = 0;

jquery.lazy.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jquery.lazy.plugins.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - AJAX Plugin - v1.1
2+
* jQuery & Zepto Lazy - AJAX Plugin - v1.2
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern
@@ -73,7 +73,7 @@
7373
})(window.jQuery || window.Zepto);
7474

7575
/*!
76-
* jQuery & Zepto Lazy - AV Plugin - v1.2
76+
* jQuery & Zepto Lazy - AV Plugin - v1.3
7777
* http://jquery.eisbehr.de/lazy/
7878
*
7979
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern
@@ -189,7 +189,7 @@
189189
})(window.jQuery || window.Zepto);
190190

191191
/*!
192-
* jQuery & Zepto Lazy - iFrame Plugin - v1.2
192+
* jQuery & Zepto Lazy - iFrame Plugin - v1.3
193193
* http://jquery.eisbehr.de/lazy/
194194
*
195195
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern
@@ -269,7 +269,7 @@
269269
})(window.jQuery || window.Zepto);
270270

271271
/*!
272-
* jQuery & Zepto Lazy - NOOP Plugin - v1.1
272+
* jQuery & Zepto Lazy - NOOP Plugin - v1.2
273273
* http://jquery.eisbehr.de/lazy/
274274
*
275275
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern
@@ -300,7 +300,7 @@
300300
})(window.jQuery || window.Zepto);
301301

302302
/*!
303-
* jQuery & Zepto Lazy - Script Plugin - v1.1
303+
* jQuery & Zepto Lazy - Script Plugin - v1.2
304304
* http://jquery.eisbehr.de/lazy/
305305
*
306306
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern
@@ -328,7 +328,7 @@
328328
})(window.jQuery || window.Zepto);
329329

330330
/*!
331-
* jQuery & Zepto Lazy - YouTube Plugin - v1.1
331+
* jQuery & Zepto Lazy - YouTube Plugin - v1.2
332332
* http://jquery.eisbehr.de/lazy/
333333
*
334334
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern

jquery.lazy.plugins.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-lazy",
33
"title": "jQuery & Zepto Lazy - Delayed Content, Image and Background Loader",
4-
"version": "1.7.0",
4+
"version": "1.7.1",
55
"description": "Lazy is a fast, feature-rich and lightweight delayed content loading plugin for jQuery and Zepto. It's designed to speed up page loading times and decrease traffic to your users by only loading the content in view.",
66
"homepage": "http://jquery.eisbehr.de/lazy/",
77
"bugs": "http://github.com/eisbehr-/jquery.lazy/issues",

plugins/jquery.lazy.ajax.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - AJAX Plugin - v1.1
2+
* jQuery & Zepto Lazy - AJAX Plugin - v1.2
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern

plugins/jquery.lazy.ajax.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/jquery.lazy.av.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - AV Plugin - v1.2
2+
* jQuery & Zepto Lazy - AV Plugin - v1.3
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern

plugins/jquery.lazy.av.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/jquery.lazy.iframe.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - iFrame Plugin - v1.2
2+
* jQuery & Zepto Lazy - iFrame Plugin - v1.3
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern

plugins/jquery.lazy.iframe.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/jquery.lazy.noop.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - NOOP Plugin - v1.1
2+
* jQuery & Zepto Lazy - NOOP Plugin - v1.2
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern

plugins/jquery.lazy.noop.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/jquery.lazy.script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - Script Plugin - v1.1
2+
* jQuery & Zepto Lazy - Script Plugin - v1.2
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern

plugins/jquery.lazy.script.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/jquery.lazy.youtube.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery & Zepto Lazy - YouTube Plugin - v1.1
2+
* jQuery & Zepto Lazy - YouTube Plugin - v1.2
33
* http://jquery.eisbehr.de/lazy/
44
*
55
* Copyright 2012 - 2016, Daniel 'Eisbehr' Kern

plugins/jquery.lazy.youtube.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)