Skip to content

Commit 7101ff2

Browse files
Version bump 1.1.4
1 parent 10e442f commit 7101ff2

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

MIT-license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2011 Caleb Troughton
3+
Copyright (c) 2011-2012 Caleb Troughton
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.markdown

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
Waypoints is a small jQuery plugin that makes it easy to execute a function whenever you scroll to an element.
44

5-
$('.entry').waypoint(function() {
6-
alert('You have scrolled to an entry.');
7-
});
5+
```js
6+
$('.entry').waypoint(function() {
7+
alert('You have scrolled to an entry.');
8+
});
9+
```
810

911
[Read the full documentation](http://imakewebthings.github.com/jquery-waypoints/#documentation) for more details on usage and customization.
1012

@@ -19,7 +21,7 @@ Waypoints can be used as a base for several common scroll-based UI patterns. Che
1921

2022
## License
2123

22-
Copyright (c) 2011 Caleb Troughton
24+
Copyright (c) 2011-2012 Caleb Troughton
2325
Dual licensed under the [MIT license](https://github.com/imakewebthings/jquery-waypoints/blob/master/MIT-license.txt) and [GPL license](https://github.com/imakewebthings/jquery-waypoints/blob/master/GPL-license.txt).
2426

2527
## Support
@@ -30,6 +32,10 @@ Unit tests for Waypoints are written with [Jasmine](http://pivotal.github.com/ja
3032

3133
## Changelog
3234

35+
### v1.1.4
36+
37+
- Add handler option to give alternate binding method.
38+
3339
### v1.1.3
3440

3541
- Fix cases where waypoints are added post-load and should be triggered immediately.

waypoints.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
jQuery Waypoints - v1.1.3
3-
Copyright (c) 2011 Caleb Troughton
2+
jQuery Waypoints - v1.1.4
3+
Copyright (c) 2011-2012 Caleb Troughton
44
Dual licensed under the MIT license and GPL license.
55
https://github.com/imakewebthings/jquery-waypoints/blob/master/MIT-license.txt
66
https://github.com/imakewebthings/jquery-waypoints/blob/master/GPL-license.txt
@@ -14,6 +14,8 @@ GitHub Repository: https://github.com/imakewebthings/jquery-waypoints
1414
Documentation and Examples: http://imakewebthings.github.com/jquery-waypoints
1515
1616
Changelog:
17+
v1.1.4
18+
- Add handler option to give alternate binding method. (Issue #34)
1719
v1.1.3
1820
- Fix cases where waypoints are added post-load and should be triggered
1921
immediately. (Issue #28)

waypoints.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)