socialforge/public/javascripts/wechat/directives/loading_spinner.js

6 lines
168 B
JavaScript
Raw Normal View History

2016-07-02 23:46:45 +08:00
app.directive('loadingSpinner', ['$http', 'config', function ($http, config) {
2016-06-14 14:24:39 +08:00
return {
2016-07-02 23:46:45 +08:00
templateUrl: config.rootPath+ 'templates/loading.html',
2016-06-14 14:24:39 +08:00
};
}]);