Jamstash/app/common/loading-service.js
Hyzual 96aa1be2cf Display the loading spinner gif for all angular ajax requests
Remove the ajax-loader.gif which appeared only in unused styles.
2015-05-28 22:07:17 +02:00

10 lines
197 B
JavaScript

/**
* jamstash.loading Module
*
* Keeps the loading state across the app in order to display the spinner gif
*/
angular.module('jamstash.loading', [])
.value('Loading', {
isLoading: false
});