diff options
Diffstat (limited to 'moonv4/moon_gui/static/app/common/loader')
-rw-r--r-- | moonv4/moon_gui/static/app/common/loader/loader.dir.js | 19 | ||||
-rw-r--r-- | moonv4/moon_gui/static/app/common/loader/loader.tpl.html | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/moonv4/moon_gui/static/app/common/loader/loader.dir.js b/moonv4/moon_gui/static/app/common/loader/loader.dir.js new file mode 100644 index 00000000..ba40c121 --- /dev/null +++ b/moonv4/moon_gui/static/app/common/loader/loader.dir.js @@ -0,0 +1,19 @@ +(function() { + + 'use strict'; + + angular + .module('moon') + .directive('moonLoader', moonLoader); + + moonLoader.$inject = []; + + function moonLoader() { + + return { + templateUrl : 'html/common/loader/loader.tpl.html', + restrict : 'E' + }; + } + +})(); diff --git a/moonv4/moon_gui/static/app/common/loader/loader.tpl.html b/moonv4/moon_gui/static/app/common/loader/loader.tpl.html new file mode 100644 index 00000000..51da439f --- /dev/null +++ b/moonv4/moon_gui/static/app/common/loader/loader.tpl.html @@ -0,0 +1 @@ +<img src="assets/img/ajax-loader.gif" />
\ No newline at end of file |