Skip to content
This repository has been archived by the owner on Dec 30, 2018. It is now read-only.

Commit

Permalink
v0.5.5, fix bind for IE8
Browse files Browse the repository at this point in the history
Signed-off-by: zensh <[email protected]>
  • Loading branch information
zensh committed Mar 8, 2014
1 parent ed0cd09 commit d2633c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ angular.module('ui.autocomplete', [])
isObject = angular.isObject,
extend = angular.extend,
autocomplete = scope.$eval(attr.uiAutocomplete),
valueMethod = element.val.bind(element),
valueMethod = angular.bind(element, element.val),
methodsName = ['close', 'destroy', 'disable', 'enable', 'option', 'search', 'widget'],
eventsName = ['change', 'close', 'create', 'focus', 'open', 'response', 'search', 'select'];

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ui-autocomplete",
"main": "autocomplete.js",
"version": "0.5.4",
"version": "0.5.5",
"homepage": "https://github.com/zensh/ui-autocomplete",
"authors": [
"Yan Qing <[email protected]>"
Expand Down

0 comments on commit d2633c3

Please sign in to comment.