diff options
-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 |