Can't seem to google up an example of how this is done.
I have successfully created a textbox that calls a function every time it changes. What I would like to do is only call the function when the user has stopped typing for x milliseconds.
I know how to do it in JQuery using the keyup event, and can probably make it work this way, but want to do it "the Angular Way".
Edit
Maybe it wasn't clear from the tag or text, but I am using AngularJS, and want to use correct methodology for that framework to create this delay functionality.