diff options
author | Rob Loach <robloach@gmail.com> | 2013-09-11 01:22:01 -0400 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2013-09-11 01:22:01 -0400 |
commit | ac1fd448edf1efa9c0abbc14d9c8642952498a19 (patch) | |
tree | 365db1b5a7ec83b21e88ede0f09d3cc13411008a | |
parent | 548c44a7e38317fcdc0d93a3c5b8204818201f0b (diff) | |
download | jquery-once-ac1fd448edf1efa9c0abbc14d9c8642952498a19.zip jquery-once-ac1fd448edf1efa9c0abbc14d9c8642952498a19.tar.gz jquery-once-ac1fd448edf1efa9c0abbc14d9c8642952498a19.tar.bz2 |
Update to 1.2.61.2.6
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | bower.json | 4 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | jquery.once.js | 2 | ||||
-rw-r--r-- | jquery.once.min.js | 2 | ||||
-rw-r--r-- | once.jquery.json | 2 | ||||
-rw-r--r-- | package.json | 2 |
7 files changed, 8 insertions, 7 deletions
@@ -2,3 +2,4 @@ components vendor node_modules composer.lock +bower_components @@ -2,7 +2,7 @@ "name": "jquery-once", "homepage": "http://github.com/robloach/jquery-once", "description": "jQuery Once Plugin", - "version": "1.2.5", + "version": "1.2.6", "main": "jquery.once.js", "ignore": [ "*.json", @@ -17,5 +17,5 @@ ], "dependencies": { "jquery": ">=1.8.0" - }, + } } diff --git a/component.json b/component.json index a2ba681..18fd98e 100644 --- a/component.json +++ b/component.json @@ -4,7 +4,7 @@ "homepage": "http://github.com/robloach/jquery-once", "description": "jQuery Once Plugin", "license": "MIT", - "version": "1.2.5", + "version": "1.2.6", "keywords": [ "jquery" ], diff --git a/jquery.once.js b/jquery.once.js index 6019fb0..4117dbf 100644 --- a/jquery.once.js +++ b/jquery.once.js @@ -1,5 +1,5 @@ /** - * jQuery Once Plugin 1.2.5 + * jQuery Once Plugin 1.2.6 * http://github.com/robloach/jquery-once * * Dual licensed under the MIT and GPL licenses: diff --git a/jquery.once.min.js b/jquery.once.min.js index 7cc8092..77ee983 100644 --- a/jquery.once.min.js +++ b/jquery.once.min.js @@ -1,4 +1,4 @@ -/*! jquery-once - v1.2.5 - 8/31/2013 - http://github.com/robloach/jquery-once +/*! jquery-once - v1.2.6 - 9/11/2013 - http://github.com/robloach/jquery-once * (c) 2013 Rob Loach (http://robloach.net) * Licensed GPL-2.0, MIT */ (function(e){"use strict";"object"==typeof exports?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){"use strict";var n={},t=0;e.fn.once=function(r,i){"string"!=typeof r&&(r in n||(n[r]=++t),i||(i=r),r="jquery-once-"+n[r]);var o=r+"-processed",s=this.not("."+o).addClass(o);return e.isFunction(i)?s.each(i):s},e.fn.removeOnce=function(n,t){var r=n+"-processed",i=this.filter("."+r).removeClass(r);return e.isFunction(t)?i.each(t):i}});
\ No newline at end of file diff --git a/once.jquery.json b/once.jquery.json index da03056..6c202c9 100644 --- a/once.jquery.json +++ b/once.jquery.json @@ -6,7 +6,7 @@ "jquery", "once" ], - "version": "1.2.5", + "version": "1.2.6", "author": { "name": "Konstantin Kafer", "url": "http://kkaefer.com" diff --git a/package.json b/package.json index 80eeee6..86fc074 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "jquery-once", "description": "jQuery Once Plugin.", - "version": "1.2.5", + "version": "1.2.6", "keywords": [ "jquery" ], |