Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Releases: ghiden/angucomplete-alt

Initial value support, bug fixes, refactoring

Choose a tag to compare

@ghiden ghiden released this 17 Aug 20:02

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

Choose a tag to compare

@ghiden ghiden released this 06 Aug 10:20
  • Required support
  • Custom strings for 'searching...' and 'no results'
  • TAB to select the first suggestion

Add minified version

Choose a tag to compare

@ghiden ghiden released this 28 Jul 01:52
v0.0.11

Add build task that generate a minified version of source.

Bug fix: Backspace and Delete key causing error for callbacks

Choose a tag to compare

@ghiden ghiden released this 18 Jul 11:01
v0.0.10

Update version to v0.0.10

Browser's autocomplete off

Choose a tag to compare

@ghiden ghiden released this 11 Jul 03:23
v0.0.9

Update bower version to 0.0.9.

Keydown for Enter Key

Choose a tag to compare

@ghiden ghiden released this 10 Jul 02:28

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

Choose a tag to compare

@ghiden ghiden released this 05 Jul 10:43
  • Fixed: mouse click does not fire ng-click.
  • Fixed: hoverRow was never working.

Match description and bug fixes

Choose a tag to compare

@ghiden ghiden released this 04 Jul 11:49
  • 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

Choose a tag to compare

@ghiden ghiden released this 23 Jun 04:42

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

Choose a tag to compare

@ghiden ghiden released this 07 Jun 02:32
Merge pull request #4 from tomgutz/fix/blank_after_selection

fix(keystroke): Added delete keystroke together with backspace