You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2019. It is now read-only.
varelement=prepareInputEl('<div><input ng-model="result" typeahead-popup-template-url="custom.html" typeahead="state as state.name for state in states | filter:$viewValue"></div>');
it('should support custom templates for matched items',function(){
321
332
$templateCache.put('custom.html','<p>{{ index }} {{ match.label }}</p>');
322
333
323
334
varelement=prepareInputEl('<div><input ng-model="result" typeahead-template-url="custom.html" typeahead="state as state.name for state in states | filter:$viewValue"></div>');
it('should support directives which require controllers in custom templates for matched items',inject(function($templateCache){
341
+
it('should support directives which require controllers in custom templates for matched items',function(){
331
342
$templateCache.put('custom.html','<p child-directive>{{ index }} {{ match.label }}</p>');
332
343
333
344
varelement=prepareInputEl('<div><input ng-model="result" typeahead-template-url="custom.html" typeahead="state as state.name for state in states | filter:$viewValue"></div>');
0 commit comments