Skip to content

Releases: ghiden/angucomplete-alt

Initial value support, bug fixes, refactoring

17 Aug 20:02
Compare
Choose a tag to compare

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

06 Aug 10:20
Compare
Choose a tag to compare
  • Required support
  • Custom strings for 'searching...' and 'no results'
  • TAB to select the first suggestion

Add minified version

28 Jul 01:52
Compare
Choose a tag to compare
v0.0.11

Add build task that generate a minified version of source.

Bug fix: Backspace and Delete key causing error for callbacks

18 Jul 11:01
Compare
Choose a tag to compare

Browser's autocomplete off

11 Jul 03:23
Compare
Choose a tag to compare
v0.0.9

Update bower version to 0.0.9.

Keydown for Enter Key

10 Jul 02:28
Compare
Choose a tag to compare

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

05 Jul 10:43
Compare
Choose a tag to compare
  • Fixed: mouse click does not fire ng-click.
  • Fixed: hoverRow was never working.

Match description and bug fixes

04 Jul 11:49
Compare
Choose a tag to compare
  • 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

23 Jun 04:42
Compare
Choose a tag to compare

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

07 Jun 02:32
Compare
Choose a tag to compare
Merge pull request #4 from tomgutz/fix/blank_after_selection

fix(keystroke): Added delete keystroke together with backspace