Files
vczero.github.io/t/lib/directive/tip.js
T
2014-12-12 00:17:22 +08:00

11 lines
223 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
};
});