Files
vczero.github.io/t/lib/directive/tip.js
T
2014-12-12 13:49:53 +08:00

11 lines
219 B
JavaScript

app.directive('tip', function(){
var str = '<div id="loading" ng-show="isNoLoaded"><img src="../imgs/loading.gif" /></div>';
return {
restrict: 'AE',
template: str,
replace: true
};
});