Debian packaging for ‘jquery-textcomplete’.
Ben Finney c39e81f3dc Merge tag 'upstream/1.7.1' | преди 8 години | |
---|---|---|
doc | преди 8 години | |
src | преди 8 години | |
.gitattributes | преди 8 години | |
.gitignore | преди 8 години | |
CHANGELOG.md | преди 8 години | |
Gruntfile.js | преди 8 години | |
LICENSE | преди 8 години | |
README.md | преди 8 години | |
bower.json | преди 8 години | |
package.json | преди 8 години |
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