Skip to content

Commit

Permalink
v. 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjørn Klinggaard authored and Bjørn Klinggaard committed May 4, 2014
1 parent 0ebd783 commit ae11c6b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ Exchange `latest` with the specific version number if you want to lock it in.
* bLazy is AMD compatible.

## CHANGELOG
### v 1.2.2 (2014/05/04) ###
* Fixed [#15](https://github.com/dinbror/blazy/issues/15), when you resize the browser window in another tab bLazy didn't trigger new images in view. Thanks joshribakoff.

### v 1.2.1 (2014/03/23) ###
* When lazy loading background images it now only updates the background-image css attribute. Thanks Saku.

Expand Down
6 changes: 3 additions & 3 deletions blazy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
hey, [be]Lazy.js - v1.2.1 - 2014.03.23
hey, [be]Lazy.js - v1.2.2 - 2014.05.04
A lazy loading and multi-serving image script
(c) Bjoern Klinggaard - @bklinggaard - http://dinbror.dk/blazy
*/
Expand Down Expand Up @@ -102,9 +102,9 @@
bindEvent(object, 'scroll', validateT);
});
}
bindEvent(window, 'resize', saveWinOffsetT);
bindEvent(window, 'resize', validateT);
bindEvent(window, 'scroll', validateT);
bindEvent(window, 'resize', validateT);
bindEvent(window, 'resize', saveWinOffsetT);
}
// And finally, we start to lazy load. Should bLazy ensure domready?
validate();
Expand Down
4 changes: 2 additions & 2 deletions blazy.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 bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bLazy",
"main": "bLazy.js",
"version": "1.2.1",
"version": "1.2.2",
"description": "bLazy is a lightweight script for lazy loading and multi-serving images",
"homepage": "https://github.com/dinbror/blazy",
"keywords": [
Expand Down

0 comments on commit ae11c6b

Please sign in to comment.