angular-debounce
angular-debounce copied to clipboard
Controller 'ngModel', required by directive 'debounce', can't be found!
This is my code
<input ng-model="chunk.userInput" debounce="500">
and I get the following error:
Controller 'ngModel', required by directive 'debounce', can't be found!
Apart from the debounce directive my input field works just fine. My model is properly updated. But it just doesn't debounce!
I'm running angular v. 1.2.25
+1
+1
+1. This error even occurs without using the directive anywhere. using angular 1.5.3
This is likely related to https://github.com/angular-ui/bootstrap/issues/6239
Name collision when ui-bootstrap typeahead directive generates a debounce on the tag.
+1
+1