Skip to content

Commit

Permalink
Prepare for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuupola committed Dec 20, 2011
1 parent 27b1713 commit 7ef91dc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ h4. 1.6.0
* Remove all code regarding placeholder and automatically removing src attribute. It does not work with modern browsers. Must use data-original attribute instead.
* Add support for James Padolseys "scrollstop event":http://james.padolsey.com/javascript/special-scroll-events-for-jquery/. Use when you have hundreds of images.
* Add _skip_invisible_ parameter. When true plugin will skip invisible images. Patch by "Valentin Zwick":https://github.com/vzwick.
* Renamed _failurelimit_ parameter to _failure_limit_. Old version will still work couple of versions.

h4. 1.5.0

Expand Down
3 changes: 2 additions & 1 deletion enabled_noscript.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ <h2>Plugin enabled with fallback for nonscript fallback</h2>
<script type="text/javascript" charset="utf-8">
$(function() {
$("img.lazy").show().lazyload({
effect : "fadeIn"
effect : "fadeIn",
failurelimit : 0
});
});
</script>
Expand Down
2 changes: 1 addition & 1 deletion jquery.lazyload.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Project home:
* http://www.appelsiini.net/projects/lazyload
*
* Version: 1.6.0-dev
* Version: 1.6.0
*
*/
(function($) {
Expand Down
2 changes: 1 addition & 1 deletion jquery.lazyload.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lazyload",
"version": "1.6.0-dev",
"version": "1.6.0",
"title": "Lazy Load",
"author": {
"name": "Mika Tuupola",
Expand Down

0 comments on commit 7ef91dc

Please sign in to comment.