Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy1978 committed Feb 28, 2013
1 parent 713daa9 commit 1c9bedc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ This height is updated every time the widow is resized. So the attribute cannot

## Release History

Version 1.0.4 (28 February 2013):
* 'touchend' event is not stopped anymore if the scrollable area is not scrolling (thank you [AdamDash-2](https://github.com/AdamDash-2))

Version 1.0.3 (24 February 2013):
* Added jQuery 1.9 and jQuery Mobile 1.3 support

Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.scrollz.css

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

4 changes: 2 additions & 2 deletions dist/jquery.scrollz.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! jQuery Scrollz - v1.0.3 - 2013-02-28
/*! jQuery Scrollz - v1.0.4 - 2013-02-28
* https://github.com/zippy1978/jquery.scrollz
* Copyright (c) 2013 Gilles Grousset; Licensed MIT, GPL */

Expand Down Expand Up @@ -218,7 +218,7 @@

if (settings.pull) {
if (animated) {
container.animate({scrollTop: _getPullHeaderHeight($this)}, 'fast', function() {
container.animate({scrollTop: _getPullHeaderHeight($this)}, 'fast', function() {
_changePullHeaderState($this, 'initial');
});
} else {
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.scrollz.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 src/jquery.scrollz.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@

if (settings.pull) {
if (animated) {
container.animate({scrollTop: _getPullHeaderHeight($this)}, 'fast', function() {
container.animate({scrollTop: _getPullHeaderHeight($this)}, 'fast', function() {
_changePullHeaderState($this, 'initial');
});
} else {
Expand Down

0 comments on commit 1c9bedc

Please sign in to comment.