Files
vczero.github.io/t/lib/directive/loading.js
T
2014-12-11 00:12:26 +08:00

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
};
});