8 lines
303 B
JavaScript
8 lines
303 B
JavaScript
|
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>',
|
||
|
};
|
||
|
}]);
|