Skip to content

Commit

Permalink
bumped version to 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fieg committed May 8, 2015
1 parent 2c75637 commit 7380f74
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
Changelog
=========

## 2.2.1

* Fix: prevent multiple initialisations causing duplicate items (fixes #175, #183)

## 2.2.0

* Improved documentation on delay and negativeMargin options
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "jquery-ias",
"version": "2.2.0",
"version": "2.2.1",
"homepage": "http://infiniteajaxscroll.com",
"main": "src/jquery-ias.js",
"ignore": [
Expand Down
2 changes: 1 addition & 1 deletion ias.jquery.json
Expand Up @@ -2,7 +2,7 @@
"name": "ias",
"title": "Infinite Ajax Scroll",
"description": "jQuery plugin that progressively enhances your server-side pagination",
"version": "2.2.0",
"version": "2.2.1",
"homepage": "http://infiniteajaxscroll.com",
"download": "http://infiniteajaxscroll.com/download.html",
"docs": "http://infiniteajaxscroll.com/docs/getting-started.html",
Expand Down
17 changes: 16 additions & 1 deletion package.json
@@ -1,17 +1,32 @@
{
"name": "jquery-ias",
"title": "Infinite Ajax Scroll",
"version": "2.2.0",
"version": "2.2.1",
"description": "A jQuery plugin that turns your server-side pagination into an infinite scrolling one using AJAX",
"homepage": "http://infiniteajaxscroll.com",
"main": "src/jquery-ias.js",
"repository": "http://github.com/webcreate/infinite-ajax-scroll",
"bugs": {
"url" : "http://infiniteajaxscroll.com/docs/support.html"
},
"author": {
"company": "Webcreate",
"name": "Jeroen Fiege",
"web": "http://webcreate.nl"
},
"keywords": [
"scroll",
"scrolling",
"ajax",
"pagination",
"jquery",
"jquery-plugin",
"ias"
],
"license": "Dual-license",
"dependencies": {
"jquery": ">=1.7"
},
"devDependencies": {
"grunt": "~0.4",
"grunt-cli": "~0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/callbacks.js
Expand Up @@ -4,7 +4,7 @@
*
* This file is part of the Infinite AJAX Scroll package
*
* Copyright 2014 Webcreate (Jeroen Fiege)
* Copyright 2014-2015 Webcreate (Jeroen Fiege)
*/

var IASCallbacks = function () {
Expand Down
2 changes: 1 addition & 1 deletion src/extension/history.js
Expand Up @@ -5,7 +5,7 @@
*
* This file is part of the Infinite AJAX Scroll package
*
* Copyright 2014 Webcreate (Jeroen Fiege)
* Copyright 2014-2015 Webcreate (Jeroen Fiege)
*/

var IASHistoryExtension = function (options) {
Expand Down
2 changes: 1 addition & 1 deletion src/extension/noneleft.js
Expand Up @@ -5,7 +5,7 @@
*
* This file is part of the Infinite AJAX Scroll package
*
* Copyright 2014 Webcreate (Jeroen Fiege)
* Copyright 2014-2015 Webcreate (Jeroen Fiege)
*/

var IASNoneLeftExtension = function(options) {
Expand Down
2 changes: 1 addition & 1 deletion src/extension/paging.js
Expand Up @@ -5,7 +5,7 @@
*
* This file is part of the Infinite AJAX Scroll package
*
* Copyright 2014 Webcreate (Jeroen Fiege)
* Copyright 2014-2015 Webcreate (Jeroen Fiege)
*/

var IASPagingExtension = function() {
Expand Down
2 changes: 1 addition & 1 deletion src/extension/spinner.js
Expand Up @@ -5,7 +5,7 @@
*
* This file is part of the Infinite AJAX Scroll package
*
* Copyright 2014 Webcreate (Jeroen Fiege)
* Copyright 2014-2015 Webcreate (Jeroen Fiege)
*/

var IASSpinnerExtension = function(options) {
Expand Down
2 changes: 1 addition & 1 deletion src/extension/trigger.js
Expand Up @@ -5,7 +5,7 @@
*
* This file is part of the Infinite AJAX Scroll package
*
* Copyright 2014 Webcreate (Jeroen Fiege)
* Copyright 2014-2015 Webcreate (Jeroen Fiege)
*/

var IASTriggerExtension = function(options) {
Expand Down
4 changes: 2 additions & 2 deletions src/jquery-ias.js
@@ -1,5 +1,5 @@
/**
* Infinite Ajax Scroll v2.2.0
* Infinite Ajax Scroll v2.2.1
* A jQuery plugin for infinite scrolling
* http://infiniteajaxscroll.com
*
Expand All @@ -8,7 +8,7 @@
*
* Non-commercial use is licensed under the MIT License
*
* Copyright 2014 Webcreate (Jeroen Fiege)
* Copyright 2014-2015 Webcreate (Jeroen Fiege)
*/

(function($) {
Expand Down

0 comments on commit 7380f74

Please sign in to comment.