Skip to content

Commit 415eb55

Browse files
Update changelog, version references for 2.0.5 release
1 parent d0c3876 commit 415eb55

File tree

12 files changed

+21
-11
lines changed

12 files changed

+21
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v2.0.5
4+
5+
- Allow sticky users to define which direction the stuck class shold be applied. (Issue #192)
6+
- Fix bug where short content on a large screen could cause the infinite shortcut to stall after the first page load. (Issue #207)
7+
- Make `unsticky` safe to use on any element. Previously it would unwrap the parent even if the element had never had `sticky` called on it or already had `unsticky` called previously. (Issue #225)
8+
- Fix bug that would cause handlers to be overwritten when trying to reuse an options object. (Issue #253)
9+
- Remove "More" link when infinite shortcut reaches last page. (Issue #260)
10+
- Fix use of `this` instead of `window`, causing Browserify to fail. (Issue #262)
11+
- Stop using deprecated jQuery `load` method. (Issue #283)
12+
313
## v2.0.4
414

515
- Fix enable, disable, and destroys calls not chaining the jQuery object. (Issue #244) (Thanks [@robharper](https://github.com/robharper))

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-waypoints",
3-
"version": "2.0.4",
3+
"version": "2.0.5",
44
"main": "waypoints.js",
55
"description": "A jQuery plugin that makes it easy to execute a function whenever you scroll to an element.",
66
"ignore": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-waypoints",
3-
"version": "2.0.4",
3+
"version": "2.0.5",
44
"author": "Caleb Troughton <[email protected]>",
55
"description": "A jQuery plugin that makes it easy to execute a function whenever you scroll to an element.",
66
"repository": {

shortcuts/infinite-scroll/waypoints-infinite.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
###
2-
Infinite Scroll Shortcut for jQuery Waypoints - v2.0.4
2+
Infinite Scroll Shortcut for jQuery Waypoints - v2.0.5
33
Copyright (c) 2011-2014 Caleb Troughton
44
Licensed under the MIT license.
55
https://github.com/imakewebthings/jquery-waypoints/blob/master/licenses.txt

shortcuts/infinite-scroll/waypoints-infinite.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.

shortcuts/infinite-scroll/waypoints-infinite.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.

shortcuts/sticky-elements/waypoints-sticky.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
###
2-
Sticky Elements Shortcut for jQuery Waypoints - v2.0.4
2+
Sticky Elements Shortcut for jQuery Waypoints - v2.0.5
33
Copyright (c) 2011-2014 Caleb Troughton
44
Licensed under the MIT license.
55
https://github.com/imakewebthings/jquery-waypoints/blob/master/licenses.txt

shortcuts/sticky-elements/waypoints-sticky.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.

shortcuts/sticky-elements/waypoints-sticky.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.

waypoints.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
###!
2-
jQuery Waypoints - v2.0.4
2+
jQuery Waypoints - v2.0.5
33
Copyright (c) 2011-2014 Caleb Troughton
44
Licensed under the MIT license.
55
https://github.com/imakewebthings/jquery-waypoints/blob/master/licenses.txt

0 commit comments

Comments
 (0)