Skip to content

Commit c41a507

Browse files
committed
FIX: #1 bugfix. Along with adding support for both 'A' & 'E' directive types.
1 parent ad88901 commit c41a507

5 files changed

+24
-6
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The bare bones:
3838
angular.module('myApp', ['siyfion.ngTypeahead']);
3939
</script>
4040
<body ng-app="myApp">
41-
<input type="text" class="ngTypeahead" datasets="exampleData"></div>
41+
<input type="text" class="ngTypeahead" datasets="exampleData" ng-model="foo"></div>
4242
<body>
4343
```
4444

@@ -63,6 +63,8 @@ function MyCtrl($scope) {
6363
prefetch: 'https://twitter.com/trends.json'
6464
}
6565
};
66+
67+
$scope.foo = null;
6668
};
6769
```
6870

angular-typeahead.js

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
11
angular.module('siyfion.ngTypeahead', [])
22
.directive('ngTypeahead', function () {
33
return {
4-
restrict: 'C',
4+
restrict: 'ACE',
55
scope: {
6-
datasets: '='
6+
datasets: '=',
7+
ngModel: '='
78
},
89
link: function (scope, element) {
910
element.typeahead(scope.datasets);
11+
12+
// Updates the ngModel binding when a value is manually selected from the dropdown.
13+
// ToDo: Think about how the value could be updated on user entry...
14+
element.bind('typeahead:selected', function (object, datum) {
15+
scope.$apply(function() {
16+
scope.ngModel = datum;
17+
});
18+
});
19+
20+
// Updates the ngModel binding when a query is autocompleted.
21+
element.bind('typeahead:autocompleted', function (object, datum) {
22+
scope.$apply(function() {
23+
scope.ngModel = datum;
24+
});
25+
});
1026
}
1127
};
1228
});

angular-typeahead.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-typeahead",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"main": "./angular-typeahead.js",
55
"ignore": [
66
"README.md",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-typeahead",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"subdomain": "Siyfion",
55
"private": true,
66
"author": "[email protected]",

0 commit comments

Comments
 (0)