Files
vczero.github.io/search/lib/directive/tip.js
T
2015-01-06 23:50:34 +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
};
});