Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Fixes to package.json | Arthur Verschaeve | 2015-03-06 | 1 | -8/+5 | |
|/ | ||||||
* | Merge pull request #1387 from alexdiliberto/bug-fix-keydown-ul-hidden | Lea Verou | 2015-03-04 | 2 | -19/+27 | |
|\ | | | | | [BUGFIX] Keydown evts when `ul` hidden shouldn't trigger component handling | |||||
| * | Merge branch 'gh-pages' into bug-fix-keydown-ul-hidden | Alex DiLiberto | 2015-03-03 | 6 | -19/+109 | |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gh-pages: fix issue entering a value that doesn't exist. Improved advanced examples section, improved email example, added tags example remove useless if statement Add minification via Google's Closure Compiler Service. use string as parameter to Awesomeplete readded position:absolute to make sure clip is working reliably advanced examples, email example removed all leftover legacy visually hiding methods removed border and padding and updated clip syntax removed the setStatus helper and moved the updating of the aria-live region directly into the goto method changed hiddena11y property to visually-hidden class add a live region that announces the selected item add styles to hide only visually | |||||
| * | | Updated to user prototype getter `opened` for keydown handling | Alex DiLiberto | 2015-02-25 | 2 | -2/+6 | |
| | | | ||||||
| * | | [BUGFIX] Keydown events while `ul` is hidden should not trigger component ↵ | Alex DiLiberto | 2015-02-24 | 2 | -69/+66 | |
| | | | | | | | | | | | | | | | | | | | | | | | | actions This fixes a bug where previously, if the `ul` was hidden, the component would still act upon keydown events for Enter/Esc/Up/Down To replicate the previous bug: In the demo, you can select `Java` then keyup and down. You know see that the context is not within the input tag iself, however it's within the component which is still selecting items from the previously searched list. | |||||
* | | | Merge pull request #9757 from drd/feature/its-a-module | Lea Verou | 2015-03-04 | 2 | -9/+43 | |
|\ \ \ | | | | | | | | | Make awesomplete a CJS/AMD module | |||||
| * | | | Export as CJS module; possible to load in non-browser environments | Eric O'Connell | 2015-03-02 | 2 | -9/+43 | |
| | |/ | |/| | ||||||
* | | | Merge pull request #14490 from ScottPolhemus/move-event | Lea Verou | 2015-03-04 | 2 | -0/+7 | |
|\ \ \ | |/ / |/| | | Add an event for when the highlighted item changes | |||||
| * | | Add awesomplete-highlight event | Scott Polhemus | 2015-03-02 | 2 | -0/+7 | |
| | | | ||||||
* | | | Merge pull request #14804 from ImBobby/gh-pages | Lea Verou | 2015-03-03 | 2 | -9/+14 | |
|\ \ \ | |/ / |/| | | fix entering a value that doesn't exist. | |||||
| * | | fix issue entering a value that doesn't exist. | ImBobby | 2015-03-03 | 2 | -9/+14 | |
|/ / | ||||||
* | | Merge pull request #14475 from vlazar/features/minification | Lea Verou | 2015-03-02 | 1 | -0/+20 | |
|\ \ | | | | | | | Add minification via Google's Closure Compiler Service. | |||||
| * | | Add minification via Google's Closure Compiler Service. | Vladislav Zarakovsky | 2015-02-28 | 1 | -0/+20 | |
| | | | ||||||
* | | | Merge pull request #12411 from mauriciosoares/feature/string-as-parameter | Lea Verou | 2015-03-02 | 1 | -56/+56 | |
|\ \ \ | | | | | | | | | use string as parameter to Awesomplete | |||||
| * \ \ | Merge branch 'gh-pages' of https://github.com/LeaVerou/awesomplete into ↵ | Mauricio Soares | 2015-03-02 | 4 | -13/+71 | |
| |\ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | feature/string-as-parameter Conflicts: awesomplete.js | |||||
* | | | | Improved advanced examples section, improved email example, added tags example | Lea Verou | 2015-03-02 | 3 | -68/+49 | |
| |/ / |/| | | ||||||
* | | | Merge pull request #6614 from sillero/gh-pages | Lea Verou | 2015-02-28 | 2 | -0/+63 | |
|\ \ \ | | | | | | | | | advanced examples, email example | |||||
| * | | | advanced examples, email example | Gustavo Sillero | 2015-02-25 | 2 | -0/+63 | |
| | |/ | |/| | ||||||
* | | | Merge pull request #26 from ginader/gh-pages | Lea Verou | 2015-02-28 | 2 | -0/+14 | |
|\ \ \ | |/ / |/| | | added a live region that announces the selected item | |||||
| * | | readded position:absolute to make sure clip is working reliably | Dirk Ginader | 2015-02-26 | 1 | -0/+1 | |
| | | | ||||||
| * | | removed all leftover legacy visually hiding methods | Dirk Ginader | 2015-02-25 | 1 | -4/+0 | |
| | | | | | | | | | | | | visually-hidden now uses exclusively clip: rect(0, 0, 0, 0); | |||||
| * | | removed border and padding and updated clip syntax | Dirk Ginader | 2015-02-22 | 1 | -4/+2 | |
| | | | | | | | | | | | | Border Margin and Padding are not needed in this case and Awesomeplete does not support IE7 so the clip syntax can be to standard with commas | |||||
| * | | removed the setStatus helper and moved the updating of the aria-live region ↵ | Dirk Ginader | 2015-02-21 | 1 | -5/+1 | |
| | | | | | | | | | | | | directly into the goto method | |||||
| * | | changed hiddena11y property to visually-hidden class | Dirk Ginader | 2015-02-20 | 2 | -2/+2 | |
| | | | ||||||
| * | | add a live region that announces the selected item | Dirk Ginader | 2015-02-19 | 1 | -0/+13 | |
| | | | ||||||
| * | | add styles to hide only visually | Dirk Ginader | 2015-02-19 | 1 | -0/+10 | |
| | | | ||||||
| | * | remove useless if statement | Mauricio Soares | 2015-03-01 | 1 | -1/+1 | |
| | | | ||||||
| | * | use string as parameter to Awesomeplete | Mauricio Soares | 2015-02-27 | 1 | -55/+55 | |
| |/ |/| | ||||||
* | | configure() function to initialize instance properties, updated minified file | Lea Verou | 2015-02-24 | 2 | -25/+51 | |
| | | ||||||
* | | Added replace method, to make the email use case easier | Lea Verou | 2015-02-24 | 4 | -128/+158 | |
| | | ||||||
* | | Merge pull request #1031 from juanto121/fixing_min_char_docs | Lea Verou | 2015-02-24 | 1 | -1/+1 | |
|\ \ | | | | | | | Fixing #72 | |||||
| * | | Fixing #72 | Juan Torres | 2015-02-24 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge pull request #785 from cfj/threequals | Lea Verou | 2015-02-24 | 1 | -10/+10 | |
|\ \ \ | |/ / |/| | | Replace == with === | |||||
| * | | Replace == with === | Jonathan Svärdén | 2015-02-23 | 1 | -10/+10 | |
| | | | ||||||
* | | | Merge pull request #1007 from sunny/patch-1 | Lea Verou | 2015-02-24 | 1 | -3/+3 | |
|\ \ \ | | | | | | | | | Minor README HTML fix | |||||
| * | | | Minor README HTML fix | Sunny Ripert | 2015-02-24 | 1 | -3/+3 | |
| | | | | | | | | | | | | The `<datalist>` markdown was actually beeing rendered on Github's README. | |||||
* | | | | Merge pull request #269 from vlazar/patch-1 | Lea Verou | 2015-02-24 | 1 | -2/+4 | |
|\ \ \ \ | |/ / / |/| | | | Reuse Array.prototype.slice & shrink minified size | |||||
| * | | | Reuse Array.prototype.slice & shrink minified size | Vladislav Zarakovsky | 2015-02-22 | 1 | -2/+4 | |
| |/ / | ||||||
* | | | Merge pull request #295 from vlazar/patch-4 | Lea Verou | 2015-02-24 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | Code style: fix the only place with single quotes | |||||
| * | | | Code style: fix the only place with single quotes | Vladislav Zarakovsky | 2015-02-22 | 1 | -1/+1 | |
| |/ / | ||||||
* | | | Merge pull request #279 from vlazar/patch-3 | Lea Verou | 2015-02-24 | 1 | -9/+3 | |
|\ \ \ | |/ / |/| | | Use Function.prototype.bind for cleaner code | |||||
| * | | Use Function.prototype.bind for cleaner code | Vladislav Zarakovsky | 2015-02-22 | 1 | -9/+3 | |
|/ / | | | | | Also reduces minified size | |||||
* | | Merge pull request #71 from neems/gh-pages | Lea Verou | 2015-02-22 | 1 | -0/+74 | |
|\ \ | | | | | | | README addition | |||||
| * | | README | neems | 2015-02-22 | 1 | -1/+3 | |
| | | | ||||||
| * | | README | neems | 2015-02-22 | 1 | -0/+72 | |
|/ / | ||||||
* | | Merge branch 'gh-pages' of github.com:LeaVerou/awesomplete into gh-pages | Lea Verou | 2015-02-21 | 1 | -1/+1 | |
|\ \ | ||||||
| * \ | Merge pull request #43 from HugoGiraudel/gh-pages | Lea Verou | 2015-02-22 | 1 | -1/+1 | |
| |\ \ | | | | | | | | | [RFR] Recommended using `async` attribute when including the script | |||||
| | * | | Recommended using `async` attribute when including the script | Hugo Giraudel | 2015-02-21 | 1 | -1/+1 | |
| |/ / | ||||||
* | | | Improved transition | Lea Verou | 2015-02-21 | 1 | -1/+1 | |
|/ / | ||||||
* | | Merge pull request #25 from brunobatista/patch-1 | Lea Verou | 2015-02-20 | 1 | -0/+18 | |
|\ \ | | | | | | | Added support for bower package manager | |||||
| * | | Added support for bower package manager | Bruno Batista | 2015-02-20 | 1 | -0/+18 | |
| | | | ||||||
* | | | Merge pull request #6 from anttisykari/init-only-after-dom-loaded | Lea Verou | 2015-02-20 | 1 | -3/+13 | |
|\ \ \ | |/ / |/| | | Init only after dom loaded | |||||
| * | | Also support the case where awesomplete is loaded after DOM has been loaded | Antti Sykäri | 2015-02-20 | 1 | -2/+10 | |
| | | | ||||||
| * | | Only initialize inputs after document has finished loading | Antti Sykäri | 2015-02-19 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | This makes it possible to put <script src='awesomeness.js'> directly in <head> like you would do with jquery or whatever. | |||||
* | | | Fixed #9 | Lea Verou | 2015-02-19 | 1 | -1/+1 | |
| |/ |/| | ||||||
* | | Reverted #2 due to old version of Prism and the plugins included. Using ↵ | Lea Verou | 2015-02-19 | 1 | -2/+2 | |
| | | | | | | | | https now though! | |||||
* | | Fix #3 | Lea Verou | 2015-02-19 | 2 | -2/+24 | |
| | | ||||||
* | | Merge branch 'gh-pages' of github.com:LeaVerou/awesomplete into gh-pages | Lea Verou | 2015-02-19 | 2 | -10/+10 | |
|\ \ | ||||||
| * \ | Merge pull request #7 from euphocat/gh-pages | Lea Verou | 2015-02-19 | 1 | -1/+1 | |
| |\ \ | | | | | | | | | Typo in a local link | |||||
| | * | | Typo in a local link | Nicolas Baptiste | 2015-02-19 | 1 | -1/+1 | |
| | |/ | ||||||
| * | | Merge pull request #5 from arthurvr/patch-1 | Lea Verou | 2015-02-19 | 1 | -5/+5 | |
| |\ \ | | |/ | |/| | Fix missing semicolons | |||||
| | * | Fix missing semicolons | Arthur Verschaeve | 2015-02-19 | 1 | -5/+5 | |
| |/ | ||||||
| * | Merge pull request #4 from anttisykari/gh-pages | Lea Verou | 2015-02-19 | 1 | -1/+1 | |
| |\ | | | | | | | Fixed typo | |||||
| | * | Fixed typo | Antti Sykäri | 2015-02-19 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merge pull request #2 from captn3m0/patch-1 | Lea Verou | 2015-02-19 | 1 | -3/+3 | |
| |\ \ | | |/ | |/| | Shifts to cdnjs for prismjs links | |||||
| | * | Shifts to cdnjs for prismjs links | Abhay Rana | 2015-02-19 | 1 | -3/+3 | |
| |/ | | | | | The old links were getting blocked over HTTPS. | |||||
* | | Datalist | Lea Verou | 2015-02-19 | 2 | -2/+2 | |
|/ | ||||||
* | Added browser support | Lea Verou | 2015-02-19 | 2 | -1/+6 | |
| | ||||||
* | Added browser support | Lea Verou | 2015-02-19 | 2 | -1/+7 | |
| | ||||||
* | Added blog post link | Lea Verou | 2015-02-19 | 1 | -1/+1 | |
| | ||||||
* | Fixed Safari bug | Lea Verou | 2015-02-19 | 2 | -15/+5 | |
| | ||||||
* | More docs, more features, more bugfixes | Lea Verou | 2015-02-19 | 3 | -6/+53 | |
| | ||||||
* | More docs, more features, more bugfixes | Lea Verou | 2015-02-19 | 5 | -116/+353 | |
| | ||||||
* | First commit | Lea Verou | 2015-02-18 | 4 | -0/+719 | |
| | ||||||
* | Initial commit | Lea Verou | 2015-02-18 | 1 | -0/+22 | |