- Fix suggestion box is not opening when value of last selected value is entered (PR #79, Thanks @ncomont!)
- Handle undefined target when positioning auto complete container (PR #77, Thanks @harrisong!)
- Make classes configurable. See PR #62 for more information.
- Set
position:absolute
in directive, so it won't trigger a CSP error (PR #67, Thanks @thany!)
- Fix debounce function to use $timeout instead of setTimeout (PR #61, Thanks @OoDeLally!)
- Lint & style changes.
- (Breaking change) Renamed MassautoCompleteConfigurrerProvider -> massAutocompleteConfig to match directive name.
- Extracted common configuration to provider.
- Added ability to change the default implementation of positioning the ac container relative to the target input.
- Improved accessibility.
- During detach unbind only handlers bound by the directive it self (Thanks @Scoup and @maninga for the pull requests).
- Added test configuration and several scenarios to the dev branch.
- Fixed suggestion box opened when no item or other item is selected (Issue #20 - Thanks @pfiaux for opening the issue).
- Prevent suggestion box from flushing when loading new results (Issue #21 - Thanks @dkulchenko for opening the issue).
- Prevent form submittion on enter (Issue #23 - Thanks @alxdnlnko for the PR).
- Added option auto_select_first to select the first suggestion automatically (issue #10).
- AC item directive is now using an isolated scope (issues #14 and #15).
- Fixed close suggestion box on blur (issue #11).
- Fixed value watch on destroy (issue #6).
- Generate dist with gulp.
- Fixed https references in gh-pages (Thank @dustinchilson for noticing).
- Don't clear value on detach (issue #6).
- Fixed bug causing values to be cleared on detach.
- Moved to semantic versioning.
- Dropped jquery dependency (issue #1).
- Fixed Long press on menu item does not select the item.
- Unbinding event from current element on detach when element does not exists (issue #3).
- Selecting an item from the list with the keyboard is not always passing the object to the on_select callback (issue #4).
- Initial