Stub for native-autocomplete directive with history.

This commit is contained in:
Gunther Brunner
2014-07-17 18:50:29 +09:00
parent 444a940fbb
commit a0ed5f93ad
6 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
module.exports = function nativeAutocompleteDirective() {
return {
restrict: 'E',
replace: true,
scope: {
},
template: require('./native-autocomplete.jade'),
link: function (scope, element, attrs) {
}
}
}