socialforge/public/javascripts/wechat/directives/loading_spinner.js

8 lines
303 B
JavaScript
Raw Normal View History

2016-06-14 14:24:39 +08:00
app.directive('loadingSpinner', ['$http', function ($http) {
return {
restrict: 'A',
replace: true,
template: '<div ng-show="activeCalls>0" class="loading-bg"><div class="loading-box"><img src="/images/loading.gif" alt=""/><span>加载中...</span></div></div>',
};
}]);