diff options
author | Rob Loach <robloach@gmail.com> | 2013-03-02 18:40:58 -0500 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2013-03-02 18:40:58 -0500 |
commit | baa05a012aa4e6c601fa30895d4cafcbdb58264f (patch) | |
tree | df2714ab0da98fa114032bbf1033438818a26840 | |
parent | 9b7347401468d2d206b57744069d1d3ec3aa21dc (diff) | |
download | jquery-once-baa05a012aa4e6c601fa30895d4cafcbdb58264f.zip jquery-once-baa05a012aa4e6c601fa30895d4cafcbdb58264f.tar.gz jquery-once-baa05a012aa4e6c601fa30895d4cafcbdb58264f.tar.bz2 |
Tag 1.2.0
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | component.json | 8 | ||||
-rw-r--r-- | jquery.once.js | 1 |
3 files changed, 8 insertions, 4 deletions
@@ -1,7 +1,8 @@ jQuery Once =========== -Filters out all elements that had the same filter applied on them before. It can be used to ensure that a function is only applied once to an element. +Filters out all elements that had the same filter applied on them before. It can +be used to ensure that a function is only applied once to an element. Usage ----- diff --git a/component.json b/component.json index c41c51c..b0165a5 100644 --- a/component.json +++ b/component.json @@ -2,9 +2,13 @@ "name": "jquery-once", "description": "jQuery Once Plugin", "version": "1.2.0", - "keywords": ["jquery"], + "keywords": [ + "jquery" + ], "dependencies": { "component/jquery": "*" }, - "scripts": ["jquery.once.js"] + "scripts": [ + "jquery.once.js" + ] } diff --git a/jquery.once.js b/jquery.once.js index 506fb48..21c82c2 100644 --- a/jquery.once.js +++ b/jquery.once.js @@ -1,4 +1,3 @@ - /** * jQuery Once Plugin v1.2 * http://plugins.jquery.com/project/once |