jmontoyaa 0030835069 move assets to public new symfony structure | há 7 anos atrás | |
---|---|---|
.. | ||
dist | há 7 anos atrás | |
doc | há 7 anos atrás | |
src | há 7 anos atrás | |
.bower.json | há 7 anos atrás | |
CHANGELOG.md | há 7 anos atrás | |
Gruntfile.js | há 7 anos atrás | |
LICENSE | há 7 anos atrás | |
README.md | há 7 anos atrás | |
bower.json | há 7 anos atrás | |
package.json | há 7 anos atrás |
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