forked from ivirabyan/jquery-mentions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added NPM support , CommonJS support and made it more Jquery validate…
… friendly (ivirabyan#77) * added package json * forgot else * Added VS solution * Update README.md * copy all data attributes to the hidden field. * copy data attr * add data elements * fixed coffee weird function generation * Copy all data tags from the actual input to the hidden element so that jquery validations can work. * Removed the Visual studio dependency files from the pull request.
- Loading branch information
1 parent
4b47a67
commit 2bc6d9c
Showing
6 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
.DS_Store | ||
/node_modules | ||
/.vs | ||
/bower_components | ||
/packages/Microsoft.Net.Compilers.1.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "jquery-mentions", | ||
"version": "1.0.1", | ||
"description": "Added npm support and CommonJS support", | ||
"main": "jquery.mentions.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/pratikvasani/jquery-mentions.git" | ||
}, | ||
"keywords": [ | ||
"jquery-plugin" | ||
], | ||
"author": "Pratik", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/pratikvasani/jquery-mentions/issues" | ||
}, | ||
"homepage": "https://github.com/pratikvasani/jquery-mentions#readme", | ||
"devDependencies": { | ||
"coffee-script": "^1.12.5" | ||
}, | ||
"dependencies": { | ||
"jquery": "~1.9.1", | ||
"jquery-ui": "~1.10.3" | ||
} | ||
} |