├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .jshintrc ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── authors.txt ├── demo ├── api │ ├── countries.php │ └── countrySearch.php ├── example_categories.html ├── example_custom_template.html ├── example_duckduckgo.html ├── example_email.html ├── example_flags.html ├── example_json.html ├── example_remote.html ├── example_simple.html ├── example_static_link.html ├── example_theme.html ├── example_theme_funky.html ├── example_theme_square.html ├── example_xml.html └── resources │ ├── categories.json │ ├── countries.json │ ├── countries.xml │ ├── flags.css │ ├── flags.png │ ├── icon_search.png │ ├── people.json │ └── site.json ├── dist ├── easy-autocomplete.css ├── easy-autocomplete.min.css ├── easy-autocomplete.themes.css ├── easy-autocomplete.themes.min.css ├── jquery.easy-autocomplete.js ├── jquery.easy-autocomplete.min.js └── maps │ ├── easy-autocomplete.css.map │ ├── easy-autocomplete.min.css.map │ ├── easy-autocomplete.themes.css.map │ └── easy-autocomplete.themes.min.css.map ├── package.json ├── src ├── configuration.js ├── constants.js ├── core.js ├── data.processor.js ├── list.builder.js ├── logger.js ├── styles │ ├── easy-autocomplete.scss │ └── easy-autocomplete.themes.scss └── template.js └── test ├── configuration.js ├── core ├── build.html ├── build.js ├── categories.html ├── categories.js ├── event.html ├── event.js ├── features.html ├── features.js ├── functions.html ├── functions.js ├── handles.html ├── handles.js ├── plugin.html ├── plugin.js ├── remote │ ├── countries.php │ └── countrySelectService.php ├── resources │ ├── categories.json │ ├── categories │ │ ├── fruits.json │ │ ├── fruits.xml │ │ └── otherFruits.xml │ ├── colors.json │ ├── colors.xml │ ├── colors_caps_string.json │ ├── colors_object.json │ ├── colors_object.xml │ ├── colors_string.json │ ├── countries.json │ ├── duckduckgo.json │ └── response.json ├── response.html ├── response.js ├── response_json.js ├── response_remote.html ├── response_remote.js ├── response_static.js ├── response_xml.js ├── template.html └── template.js ├── data.processor.js ├── list.builder.js ├── modules.html └── template.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "jquery", 3 | "requireMultipleVarDecl": null 4 | } -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/README.md -------------------------------------------------------------------------------- /authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/authors.txt -------------------------------------------------------------------------------- /demo/api/countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/api/countries.php -------------------------------------------------------------------------------- /demo/api/countrySearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/api/countrySearch.php -------------------------------------------------------------------------------- /demo/example_categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_categories.html -------------------------------------------------------------------------------- /demo/example_custom_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_custom_template.html -------------------------------------------------------------------------------- /demo/example_duckduckgo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_duckduckgo.html -------------------------------------------------------------------------------- /demo/example_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_email.html -------------------------------------------------------------------------------- /demo/example_flags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_flags.html -------------------------------------------------------------------------------- /demo/example_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_json.html -------------------------------------------------------------------------------- /demo/example_remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_remote.html -------------------------------------------------------------------------------- /demo/example_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_simple.html -------------------------------------------------------------------------------- /demo/example_static_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_static_link.html -------------------------------------------------------------------------------- /demo/example_theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_theme.html -------------------------------------------------------------------------------- /demo/example_theme_funky.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_theme_funky.html -------------------------------------------------------------------------------- /demo/example_theme_square.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_theme_square.html -------------------------------------------------------------------------------- /demo/example_xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/example_xml.html -------------------------------------------------------------------------------- /demo/resources/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/categories.json -------------------------------------------------------------------------------- /demo/resources/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/countries.json -------------------------------------------------------------------------------- /demo/resources/countries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/countries.xml -------------------------------------------------------------------------------- /demo/resources/flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/flags.css -------------------------------------------------------------------------------- /demo/resources/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/flags.png -------------------------------------------------------------------------------- /demo/resources/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/icon_search.png -------------------------------------------------------------------------------- /demo/resources/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/people.json -------------------------------------------------------------------------------- /demo/resources/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/demo/resources/site.json -------------------------------------------------------------------------------- /dist/easy-autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/easy-autocomplete.css -------------------------------------------------------------------------------- /dist/easy-autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/easy-autocomplete.min.css -------------------------------------------------------------------------------- /dist/easy-autocomplete.themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/easy-autocomplete.themes.css -------------------------------------------------------------------------------- /dist/easy-autocomplete.themes.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/easy-autocomplete.themes.min.css -------------------------------------------------------------------------------- /dist/jquery.easy-autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/jquery.easy-autocomplete.js -------------------------------------------------------------------------------- /dist/jquery.easy-autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/jquery.easy-autocomplete.min.js -------------------------------------------------------------------------------- /dist/maps/easy-autocomplete.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/maps/easy-autocomplete.css.map -------------------------------------------------------------------------------- /dist/maps/easy-autocomplete.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/maps/easy-autocomplete.min.css.map -------------------------------------------------------------------------------- /dist/maps/easy-autocomplete.themes.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/maps/easy-autocomplete.themes.css.map -------------------------------------------------------------------------------- /dist/maps/easy-autocomplete.themes.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/dist/maps/easy-autocomplete.themes.min.css.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/package.json -------------------------------------------------------------------------------- /src/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/configuration.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/core.js -------------------------------------------------------------------------------- /src/data.processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/data.processor.js -------------------------------------------------------------------------------- /src/list.builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/list.builder.js -------------------------------------------------------------------------------- /src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/logger.js -------------------------------------------------------------------------------- /src/styles/easy-autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/styles/easy-autocomplete.scss -------------------------------------------------------------------------------- /src/styles/easy-autocomplete.themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/styles/easy-autocomplete.themes.scss -------------------------------------------------------------------------------- /src/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/src/template.js -------------------------------------------------------------------------------- /test/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/configuration.js -------------------------------------------------------------------------------- /test/core/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/build.html -------------------------------------------------------------------------------- /test/core/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/build.js -------------------------------------------------------------------------------- /test/core/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/categories.html -------------------------------------------------------------------------------- /test/core/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/categories.js -------------------------------------------------------------------------------- /test/core/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/event.html -------------------------------------------------------------------------------- /test/core/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/event.js -------------------------------------------------------------------------------- /test/core/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/features.html -------------------------------------------------------------------------------- /test/core/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/features.js -------------------------------------------------------------------------------- /test/core/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/functions.html -------------------------------------------------------------------------------- /test/core/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/functions.js -------------------------------------------------------------------------------- /test/core/handles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/handles.html -------------------------------------------------------------------------------- /test/core/handles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/handles.js -------------------------------------------------------------------------------- /test/core/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/plugin.html -------------------------------------------------------------------------------- /test/core/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/plugin.js -------------------------------------------------------------------------------- /test/core/remote/countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/remote/countries.php -------------------------------------------------------------------------------- /test/core/remote/countrySelectService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/remote/countrySelectService.php -------------------------------------------------------------------------------- /test/core/resources/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/categories.json -------------------------------------------------------------------------------- /test/core/resources/categories/fruits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/categories/fruits.json -------------------------------------------------------------------------------- /test/core/resources/categories/fruits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/categories/fruits.xml -------------------------------------------------------------------------------- /test/core/resources/categories/otherFruits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/categories/otherFruits.xml -------------------------------------------------------------------------------- /test/core/resources/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/colors.json -------------------------------------------------------------------------------- /test/core/resources/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/colors.xml -------------------------------------------------------------------------------- /test/core/resources/colors_caps_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/colors_caps_string.json -------------------------------------------------------------------------------- /test/core/resources/colors_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/colors_object.json -------------------------------------------------------------------------------- /test/core/resources/colors_object.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/colors_object.xml -------------------------------------------------------------------------------- /test/core/resources/colors_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/colors_string.json -------------------------------------------------------------------------------- /test/core/resources/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/countries.json -------------------------------------------------------------------------------- /test/core/resources/duckduckgo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/duckduckgo.json -------------------------------------------------------------------------------- /test/core/resources/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/resources/response.json -------------------------------------------------------------------------------- /test/core/response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/response.html -------------------------------------------------------------------------------- /test/core/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/response.js -------------------------------------------------------------------------------- /test/core/response_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/response_json.js -------------------------------------------------------------------------------- /test/core/response_remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/response_remote.html -------------------------------------------------------------------------------- /test/core/response_remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/response_remote.js -------------------------------------------------------------------------------- /test/core/response_static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/response_static.js -------------------------------------------------------------------------------- /test/core/response_xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/response_xml.js -------------------------------------------------------------------------------- /test/core/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/template.html -------------------------------------------------------------------------------- /test/core/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/core/template.js -------------------------------------------------------------------------------- /test/data.processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/data.processor.js -------------------------------------------------------------------------------- /test/list.builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/list.builder.js -------------------------------------------------------------------------------- /test/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/modules.html -------------------------------------------------------------------------------- /test/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawelczak/EasyAutocomplete/HEAD/test/template.js --------------------------------------------------------------------------------