Debian packaging for ‘jquery-textcomplete’.
Ben Finney c39e81f3dc Merge tag 'upstream/1.7.1' | před 8 roky | |
---|---|---|
doc | před 8 roky | |
src | před 8 roky | |
.gitattributes | před 8 roky | |
.gitignore | před 8 roky | |
CHANGELOG.md | před 8 roky | |
Gruntfile.js | před 8 roky | |
LICENSE | před 8 roky | |
README.md | před 8 roky | |
bower.json | před 8 roky | |
package.json | před 8 roky |
Introduces autocompleting power to textareas, like a GitHub comment form has.
Demo.
$('textarea').textcomplete([{
match: /(^|\b)(\w{2,})$/,
search: function (term, callback) {
var words = ['google', 'facebook', 'github', 'microsoft', 'yahoo'];
callback($.map(words, function (word) {
return word.indexOf(term) === 0 ? word : null;
}));
},
replace: function (word) {
return word + ' ';
}
}]);
See doc dir.
Licensed under the MIT License.
Patches and code improvements were contributed by:
https://github.com/yuku-t/jquery-textcomplete/graphs/contributors