├── .gitignore ├── MIT-LICENSE ├── README.md ├── bin └── stylus ├── package.json ├── src ├── css │ ├── arrow.png │ ├── close.png │ ├── textext.core.css │ ├── textext.plugin.arrow.css │ ├── textext.plugin.autocomplete.css │ ├── textext.plugin.clear.css │ ├── textext.plugin.focus.css │ ├── textext.plugin.prompt.css │ └── textext.plugin.tags.css ├── js │ ├── textext.core.js │ ├── textext.plugin.ajax.js │ ├── textext.plugin.arrow.js │ ├── textext.plugin.autocomplete.js │ ├── textext.plugin.clear.js │ ├── textext.plugin.filter.js │ ├── textext.plugin.focus.js │ ├── textext.plugin.prompt.js │ ├── textext.plugin.suggestions.js │ └── textext.plugin.tags.js └── stylus │ ├── _common.styl │ ├── textext.core.styl │ ├── textext.plugin.arrow.styl │ ├── textext.plugin.autocomplete.styl │ ├── textext.plugin.focus.styl │ ├── textext.plugin.prompt.styl │ └── textext.plugin.tags.styl └── tests ├── common.js ├── firefox_profile ├── .gitignore ├── .parentlock ├── compatibility.ini ├── extensions.ini ├── localstore.rdf ├── pluginreg.dat ├── prefs.js ├── search.json ├── sessionstore.bak ├── sessionstore.js └── urlclassifier.pset ├── get_selenium_rc ├── start_selenium_rc ├── test_ajax.js ├── test_autocomplete.js ├── test_filter.js ├── test_focus.js ├── test_prompt.js ├── test_tags.js └── tests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/.gitignore -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/README.md -------------------------------------------------------------------------------- /bin/stylus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/bin/stylus -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/package.json -------------------------------------------------------------------------------- /src/css/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/arrow.png -------------------------------------------------------------------------------- /src/css/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/close.png -------------------------------------------------------------------------------- /src/css/textext.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/textext.core.css -------------------------------------------------------------------------------- /src/css/textext.plugin.arrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/textext.plugin.arrow.css -------------------------------------------------------------------------------- /src/css/textext.plugin.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/textext.plugin.autocomplete.css -------------------------------------------------------------------------------- /src/css/textext.plugin.clear.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/textext.plugin.clear.css -------------------------------------------------------------------------------- /src/css/textext.plugin.focus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/textext.plugin.focus.css -------------------------------------------------------------------------------- /src/css/textext.plugin.prompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/textext.plugin.prompt.css -------------------------------------------------------------------------------- /src/css/textext.plugin.tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/css/textext.plugin.tags.css -------------------------------------------------------------------------------- /src/js/textext.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.core.js -------------------------------------------------------------------------------- /src/js/textext.plugin.ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.ajax.js -------------------------------------------------------------------------------- /src/js/textext.plugin.arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.arrow.js -------------------------------------------------------------------------------- /src/js/textext.plugin.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.autocomplete.js -------------------------------------------------------------------------------- /src/js/textext.plugin.clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.clear.js -------------------------------------------------------------------------------- /src/js/textext.plugin.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.filter.js -------------------------------------------------------------------------------- /src/js/textext.plugin.focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.focus.js -------------------------------------------------------------------------------- /src/js/textext.plugin.prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.prompt.js -------------------------------------------------------------------------------- /src/js/textext.plugin.suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.suggestions.js -------------------------------------------------------------------------------- /src/js/textext.plugin.tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/js/textext.plugin.tags.js -------------------------------------------------------------------------------- /src/stylus/_common.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/stylus/_common.styl -------------------------------------------------------------------------------- /src/stylus/textext.core.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/stylus/textext.core.styl -------------------------------------------------------------------------------- /src/stylus/textext.plugin.arrow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/stylus/textext.plugin.arrow.styl -------------------------------------------------------------------------------- /src/stylus/textext.plugin.autocomplete.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/stylus/textext.plugin.autocomplete.styl -------------------------------------------------------------------------------- /src/stylus/textext.plugin.focus.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/stylus/textext.plugin.focus.styl -------------------------------------------------------------------------------- /src/stylus/textext.plugin.prompt.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/stylus/textext.plugin.prompt.styl -------------------------------------------------------------------------------- /src/stylus/textext.plugin.tags.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/src/stylus/textext.plugin.tags.styl -------------------------------------------------------------------------------- /tests/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/common.js -------------------------------------------------------------------------------- /tests/firefox_profile/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | -------------------------------------------------------------------------------- /tests/firefox_profile/.parentlock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/firefox_profile/compatibility.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/compatibility.ini -------------------------------------------------------------------------------- /tests/firefox_profile/extensions.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/extensions.ini -------------------------------------------------------------------------------- /tests/firefox_profile/localstore.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/localstore.rdf -------------------------------------------------------------------------------- /tests/firefox_profile/pluginreg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/pluginreg.dat -------------------------------------------------------------------------------- /tests/firefox_profile/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/prefs.js -------------------------------------------------------------------------------- /tests/firefox_profile/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/search.json -------------------------------------------------------------------------------- /tests/firefox_profile/sessionstore.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/sessionstore.bak -------------------------------------------------------------------------------- /tests/firefox_profile/sessionstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/sessionstore.js -------------------------------------------------------------------------------- /tests/firefox_profile/urlclassifier.pset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/firefox_profile/urlclassifier.pset -------------------------------------------------------------------------------- /tests/get_selenium_rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/get_selenium_rc -------------------------------------------------------------------------------- /tests/start_selenium_rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/start_selenium_rc -------------------------------------------------------------------------------- /tests/test_ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/test_ajax.js -------------------------------------------------------------------------------- /tests/test_autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/test_autocomplete.js -------------------------------------------------------------------------------- /tests/test_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/test_filter.js -------------------------------------------------------------------------------- /tests/test_focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/test_focus.js -------------------------------------------------------------------------------- /tests/test_prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/test_prompt.js -------------------------------------------------------------------------------- /tests/test_tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/test_tags.js -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexgorbatchev/jquery-textext/HEAD/tests/tests.js --------------------------------------------------------------------------------