All:
There is a common operation in my Angular project is:
Click a button, init AJAX call, download data. But there is one thing related to user action which is multiple clicks in very short time( probably for fun purpose? ), those requests carry same calls, and what I want to do is how to prevent those dup calls and only allow one fired?
I am currently using Angular $http.
Thanks