mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
13 lines
226 B
JavaScript
13 lines
226 B
JavaScript
|
|
|
|
app.directive('loading', function(){
|
|
|
|
var str = '<div id="loading" ng-show="isNoLoaded"><img src="../imgs/loading.gif" /></div>';
|
|
return {
|
|
restrict: 'AE',
|
|
template: str,
|
|
replace: true
|
|
};
|
|
|
|
});
|