summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2013-02-08 15:50:46 -0600
committerBrandon Aaron <brandon.aaron@gmail.com>2013-02-08 15:50:46 -0600
commit04a69384586383793e7b591b28339f1caf01cddb (patch)
tree6c32dcf8f4ab2706cfcf20c12c1a1411177f8dc2
parent9f05813eba401fd57bcf8db2dddda65b48b0a791 (diff)
downloadjquery-expandable-04a69384586383793e7b591b28339f1caf01cddb.zip
jquery-expandable-04a69384586383793e7b591b28339f1caf01cddb.tar.gz
jquery-expandable-04a69384586383793e7b591b28339f1caf01cddb.tar.bz2
update contributors, copyright, and add jquery plugin manifest
-rw-r--r--LICENSE.txt4
-rw-r--r--README.markdown3
-rw-r--r--expandable.jquery.json26
-rw-r--r--jquery.expandable.js5
4 files changed, 33 insertions, 5 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index 74c5970..a1342a6 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,4 +1,4 @@
-Copyright 2010, Brandon Aaron (http://brandonaaron.net/)
+Copyright 2013, Brandon Aaron (http://brandonaaron.net/)
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.markdown b/README.markdown
index 4078888..d52cb25 100644
--- a/README.markdown
+++ b/README.markdown
@@ -19,8 +19,9 @@ The expandable plugin has 5 settings:
The expandable plugin is licensed under the MIT License (LICENSE.txt).
-Copyright (c) 2010 [Brandon Aaron](http://brandonaaron.net)
+Copyright (c) 2013 [Brandon Aaron](http://brandonaaron.net)
## Contributors
Karl Swedberg
+Pistos
diff --git a/expandable.jquery.json b/expandable.jquery.json
new file mode 100644
index 0000000..b5a0cf0
--- /dev/null
+++ b/expandable.jquery.json
@@ -0,0 +1,26 @@
+{
+ "name": "expandable",
+ "title": "jQuery Expandable",
+ "description": "A jQuery plugin that auto-expands textareas to fit the contents as a user types.",
+ "keywords": [
+ "expandable"
+ "textarea"
+ ],
+ "version": "1.1.0",
+ "author": {
+ "name": "Brandon Aaron",
+ "url": "http://brandonaaron.net"
+ },
+ "licenses": [
+ {
+ "type": "MIT",
+ "url": "https://raw.github.com/brandonaaron/jquery-expandable/master/LICENSE.txt"
+ }
+ ],
+ "bugs": "https://github.com/brandonaaron/jquery-expandable/issues",
+ "homepage": "https://github.com/brandonaaron/jquery-expandable",
+ "download": "https://github.com/brandonaaron/jquery-expandable/tags",
+ "dependencies": {
+ "jquery": ">=1.2.6"
+ }
+}
diff --git a/jquery.expandable.js b/jquery.expandable.js
index 82090ce..eb40cab 100644
--- a/jquery.expandable.js
+++ b/jquery.expandable.js
@@ -1,10 +1,11 @@
-/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
+/*! Copyright (c) 2013 Brandon Aaron (http://brandonaaron.net)
* Licensed under the MIT License (LICENSE.txt).
*
- * Version 1.0
+ * Version 1.1.0
*
* Contributions by:
* - Karl Swedberg
+ * - Pistos
*/
(function($) {