Skip to content

Commit fa9fcb7

Browse files
committed
bump version, year and use https scheme everywhere
1 parent 2122131 commit fa9fcb7

20 files changed

+38
-32
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
## 2.3.0
5+
6+
* Added new option: `initialize`
7+
* Fix: `ready` event to fire when ready (see commit f6b44a7)
8+
* Added `ajaxOptions` to `load` event (PR by campadrenalin)
9+
410
## 2.2.3
511

612
* Improved documentation

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-ias",
3-
"version": "2.2.3",
3+
"version": "2.3.0",
44
"homepage": "http://infiniteajaxscroll.com",
55
"main": "src/jquery-ias.js",
66
"ignore": [

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webcreate/jquery-ias",
3-
"description": "Infinite AJAX Scroll: A jQuery plugin that turns your server-side pagination into an infinite scrolling one using AJAX",
4-
"homepage": "http://infiniteajaxscroll.com",
3+
"description": "Infinite Ajax Scroll: A jQuery plugin that turns your server-side pagination into an infinite scrolling one using AJAX",
4+
"homepage": "https://infiniteajaxscroll.com",
55
"keywords": [
66
"infinite",
77
"scroll",
@@ -18,7 +18,7 @@
1818
"authors": [
1919
{
2020
"name": "fieg",
21-
"email": "jeroen@fieg.nl",
21+
"email": "jeroen@webcreate.nl",
2222
"homepage": "http://webcreate.nl"
2323
}
2424
],

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
All documentation is made available at http://infiniteajaxscroll.com/docs.
1+
All documentation is made available at https://infiniteajaxscroll.com/docs.

doc/cookbook/wordpress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Integrate Infinite AJAX Scroll with Wordpress
33

44
In this cookbook we install Infinite AJAX Scroll into the default Twenty Twelve theme.
55

6-
1) Download [jquery-ias.min.js](http://infiniteajaxscroll.com/download.html).
6+
1) Download [jquery-ias.min.js](https://infiniteajaxscroll.com/download.html).
77

88
2) Copy `jquery-ias.min.js` into the folder `wp-content/themes/twentytwelve/js`
99

doc/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The load event object contains the following properties.
2323
| property | type | description |
2424
|-------------------|--------|--------------------------------------------------------------------------------|
2525
| event.url | string | url that will be loaded |
26-
| event.ajaxOptions | object | options that are passed to [$.ajax method](http://api.jquery.com/jquery.ajax/) |
26+
| event.ajaxOptions | object | options that are passed to [$.ajax method](https://api.jquery.com/jquery.ajax/) |
2727

2828
Using this event it is possible to change the requested url. This can be useful to append an arbitrary parameter to the requested url so the server can handle the request differently. For example to optimize the returned html by stripping everything outside the container element (header, footer, etc.).
2929

@@ -47,7 +47,7 @@ ias.on('load', function(event) {
4747
})
4848
```
4949

50-
See http://api.jquery.com/jquery.ajax/ for a complete list of options.
50+
See https://api.jquery.com/jquery.ajax/ for a complete list of options.
5151

5252
### loaded
5353

doc/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Installation
33

44
### Manual
55

6-
1) Download [jquery-ias.min.js](http://infiniteajaxscroll.com/download.html).
6+
1) Download [jquery-ias.min.js](https://infiniteajaxscroll.com/download.html).
77

88
2) Copy `jquery-ias.min.js` into your web directory
99

doc/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Overview
1111

1212
Infinite AJAX Scroll may be used in commercial projects and applications with the one-time purchase of a commercial license.
1313

14-
<a href="http://infiniteajaxscroll.com/download.html" title="Buy Infinite AJAX Scroll Commercial License" class="btn btn-buy clicky">Buy Commercial License</a>
14+
<a href="https://infiniteajaxscroll.com/download.html" title="Buy Infinite AJAX Scroll Commercial License" class="btn btn-buy clicky">Buy Commercial License</a>
1515

1616
For non-commercial, personal, or open source projects and applications, you may use Infinite AJAX Scroll under the terms of the MIT License. You may use Infinite AJAX Scroll for free.
1717

doc/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ With the purchase of a commercial license:
1313

1414
* You may use Infinite AJAX Scroll in commercial applications.
1515

16-
<a href="http://infiniteajaxscroll.com/order/94183.html" title="Buy Infinite AJAX Scroll Commercial License" class="btn btn-buy clicky">Buy Commercial License</a>
16+
<a href="https://infiniteajaxscroll.com/download.html" title="Buy Infinite AJAX Scroll Commercial License" class="btn btn-buy clicky">Buy Commercial License</a>
1717

1818
## Infinite AJAX Scroll Commercial License Agreement
1919

doc/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ Note: user experience can degrade if new pages are loaded too quickly without vi
9696

9797
By default IAS initializes when the document is ready. During initialisation IAS binds to the scroll event and prefills the container when the content is shorter then the page fold.
9898

99-
If you want to control when IAS initializes yourself, you can set this value to false.
99+
If you want to control when IAS initializes yourself, you can set this value to false. Then initialize IAS yourself with the [initialize](methods.html#initialize) method.

0 commit comments

Comments
 (0)