I'm working on a web application where I make asynchronous using cujojs with their whenjs extension. However, I'm generally just tying into one of our service interfaces and letting them do all the heavy lifting.
Is there any way to show a spinner/loader automatically when the application is awaiting a response from the server? Just some visual cue maybe in the corner letting the user know that everything is churning along.
The big thing I want to avoid is having to manually show/hide a loading spinner every time I make a call.