diff options
author | Rob Loach <robloach@gmail.com> | 2014-10-01 08:13:21 -0400 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2014-10-01 08:13:21 -0400 |
commit | affad4475bcf68fb58edeace49671ef40e964100 (patch) | |
tree | 759a70adc595986147dedfd8c7a2e39e038474d8 | |
parent | 888ad165d38b34886914588457f8358e35287ad8 (diff) | |
download | jquery-once-affad4475bcf68fb58edeace49671ef40e964100.zip jquery-once-affad4475bcf68fb58edeace49671ef40e964100.tar.gz jquery-once-affad4475bcf68fb58edeace49671ef40e964100.tar.bz2 |
Update to 2.0.0-alpha.32.0.0-alpha.3
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | bower.json | 4 | ||||
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | jquery.once.min.js | 2 | ||||
-rw-r--r-- | package.json | 4 |
5 files changed, 10 insertions, 8 deletions
@@ -40,7 +40,7 @@ be used to ensure that a function is only applied once to an element. ### [Browserify](http://browserify.org/) - Use: `require('jquery-once')` - Install: `npm install --save jquery-once` -- CDN URL: `//wzrd.in/bundle/jquery-once@2.0.0-alpha.2` +- CDN URL: `//wzrd.in/bundle/jquery-once@2.0.0-alpha.3` ### [Ender](http://ender.jit.su/) - Use: `require('jquery-once')` @@ -146,9 +146,11 @@ No sponsors yet! Will you be the first? These amazing people have contributed code to this project: - [JohnAlbin](https://github.com/JohnAlbin) — [view contributions](https://github.com/RobLoach/jquery-once/commits?author=JohnAlbin) -- [Rob Loach](https://github.com/RobLoach) <robloach@gmail.com> — [view contributions](https://github.com/RobLoach/jquery-once/commits?author=RobLoach) +- [Rob Loach](https://github.com/robloach) <robloach@gmail.com> — [view contributions](https://github.com/RobLoach/jquery-once/commits?author=robloach) - [theodoreb](https://github.com/theodoreb) — [view contributions](https://github.com/RobLoach/jquery-once/commits?author=theodoreb) [Become a contributor!](https://github.com/RobLoach/jquery-once/blob/master/CONTRIBUTING.md#files) <!-- /BACKERS --> + + @@ -2,7 +2,7 @@ "name": "jquery-once", "homepage": "http://github.com/robloach/jquery-once", "description": "jQuery Once Plugin", - "version": "2.0.0-alpha.2", + "version": "2.0.0-alpha.3", "main": "jquery.once.js", "ignore": [ "*.json", @@ -23,6 +23,6 @@ "grunt-contrib-jshint": "~0.10.0", "grunt-contrib-qunit": "~0.5.2", "grunt-contrib-uglify": "~0.6.0", - "projectz": "^0.3.15" + "projectz": "~0.3.15" } }
\ No newline at end of file diff --git a/component.json b/component.json index 0aa8945..a03a835 100644 --- a/component.json +++ b/component.json @@ -4,7 +4,7 @@ "homepage": "http://github.com/robloach/jquery-once", "description": "Act on jQuery elements only once.", "license": "GPL-2.0", - "version": "2.0.0-alpha.2", + "version": "2.0.0-alpha.3", "keywords": [ "jquery" ], diff --git a/jquery.once.min.js b/jquery.once.min.js index c3d5d79..13cfa6c 100644 --- a/jquery.once.min.js +++ b/jquery.once.min.js @@ -1,4 +1,4 @@ -/*! jQuery Once - v2.0.0-alpha.2 - 9/27/2014 - http://github.com/robloach/jquery-once +/*! jQuery Once - v2.0.0-alpha.3 - 10/1/2014 - https://github.com/RobLoach/jquery-once * (c) 2014 Rob Loach <robloach@gmail.com> (http://github.com/robloach) * Licensed GPL-2.0, MIT */ !function(a){"use strict";"object"==typeof exports?a(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";var b={},c=0;a.fn.once=function(d,e){"string"!=typeof d&&(d in b||(b[d]=++c),e||(e=d),d=b[d]);var f="jquery-once-"+d,g=this.filter(function(){return a(this).data(f)!==!0}).data(f,!0);return a.isFunction(e)?g.each(e):g},a.fn.removeOnce=function(b,c){var d="jquery-once-"+b,e=this.filter(function(){return a(this).data(d)===!0}).removeData(d);return a.isFunction(c)?e.each(c):e}});
\ No newline at end of file diff --git a/package.json b/package.json index 1e36858..b16b8c1 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "main": "jquery.once.js", "contributors": [ "JohnAlbin (https://github.com/JohnAlbin)", - "Rob Loach <robloach@gmail.com> (https://github.com/RobLoach)", + "Rob Loach <robloach@gmail.com> (https://github.com/robloach)", "theodoreb (https://github.com/theodoreb)" ], "repository": { @@ -59,4 +59,4 @@ "test": "grunt jshint qunit", "projectz": "node_modules/.bin/projectz compile" } -} +}
\ No newline at end of file |