|
@@ -22,8 +22,8 @@ angular.module('luticateUtils')
|
22
|
22
|
|
23
|
23
|
var options = {
|
24
|
24
|
group: attrs.luBusy,
|
25
|
|
- templateLoader: "luticate-loader.html",
|
26
|
|
- templateError: "luticate-error.html"
|
|
25
|
+ templateLoader: "/luticate/lubusy-loader.html",
|
|
26
|
+ templateError: "/luticate/lubusy-error.html"
|
27
|
27
|
};
|
28
|
28
|
|
29
|
29
|
$scope.update = function()
|
|
@@ -103,7 +103,7 @@ angular.module('luticateUtils')
|
103
|
103
|
angular.module('luticateUtils').run(['$templateCache', function($templateCache) {
|
104
|
104
|
'use strict';
|
105
|
105
|
|
106
|
|
- $templateCache.put('luticate-loader.html',
|
|
106
|
+ $templateCache.put('/luticate/lubusy-loader.html',
|
107
|
107
|
"<div class=\"lu-busy-default-wrapper\" style=\"position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;\">\n" +
|
108
|
108
|
"\n" +
|
109
|
109
|
" <div class=\"lu-busy-default-sign\">\n" +
|
|
@@ -130,7 +130,7 @@ angular.module('luticateUtils').run(['$templateCache', function($templateCache)
|
130
|
130
|
"</div>"
|
131
|
131
|
);
|
132
|
132
|
|
133
|
|
- $templateCache.put('luticate-error.html',
|
|
133
|
+ $templateCache.put('/luticate/lubusy-error.html',
|
134
|
134
|
"<div class=\"lu-busy-default-wrapper\" style=\"position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;\">\n" +
|
135
|
135
|
"\n" +
|
136
|
136
|
" <div class=\"lu-busy-default-sign\">\n" +
|