Releases: ghiden/angucomplete-alt
Releases · ghiden/angucomplete-alt
Initial value support, bug fixes, refactoring
New feature:
- initial value
Bug fixes:
- required wasn't quite working with added complexity with tab completion
Misc:
- clean up legacy angucomplete code structure
Three features added
- Required support
- Custom strings for 'searching...' and 'no results'
- TAB to select the first suggestion
Add minified version
v0.0.11 Add build task that generate a minified version of source.
Bug fix: Backspace and Delete key causing error for callbacks
v0.0.10 Update version to v0.0.10
Browser's autocomplete off
v0.0.9 Update bower version to 0.0.9.
Keydown for Enter Key
Change event handling of Enter Key:
It was used to be keyup for historical reason which is the original angucomplete handles that way.
But it causes some trouble when it comes to form submission. It sends form prior to select the object as keyup is followed by keydown. Always keydown enter event goes earlier than keyup for enter. So, I change keydown event for enter key.
Bug fixes: mouse click and hover
- Fixed: mouse click does not fire ng-click.
- Fixed: hoverRow was never working.
Match description and bug fixes
- Add highlight to description.
- Fix bug: not properly showing result when matchClass is applied to strings with < and >.
- Fix bug: not properly handling title field being more than one level deep.
Response formatter, selected callback, and keydown handler
Add response formatter for remote API access.
Add callback handling for selectedObject.
Add keydown for up/down arrow keys for better user experience.
v0.0.4: Handle delete key
Merge pull request #4 from tomgutz/fix/blank_after_selection fix(keystroke): Added delete keystroke together with backspace