|
@@ -12,10 +12,12 @@ angular.module('luticateUtils')
|
12
|
12
|
},
|
13
|
13
|
link: function($scope, element, attrs) {
|
14
|
14
|
|
15
|
|
- var position = element.css('position');
|
|
15
|
+ /*var position = element.css('position');
|
16
|
16
|
if (position === 'static' || position === '' || typeof position === 'undefined'){
|
17
|
17
|
element.css('position','relative');
|
18
|
|
- }
|
|
18
|
+ }*/
|
|
19
|
+
|
|
20
|
+ console.log(element.css('z-index'));
|
19
|
21
|
|
20
|
22
|
$scope.isLoading = false;
|
21
|
23
|
$scope.hasError = false;
|
|
@@ -85,7 +87,7 @@ angular.module('luticateUtils')
|
85
|
87
|
var backdropElement = $compile(backdrop)(templateScope);
|
86
|
88
|
element.append(backdropElement);
|
87
|
89
|
|
88
|
|
- var template = '<div class="lu-busy lu-busy-animation" ng-show="' + ngShow + '">' + indicatorTemplate + '</div>';
|
|
90
|
+ var template = '<div class="lu-busy lu-busy-animation ng-hide" ng-show="' + ngShow + '">' + indicatorTemplate + '</div>';
|
89
|
91
|
var templateElement = $compile(template)(templateScope);
|
90
|
92
|
element.append(templateElement);
|
91
|
93
|
|
|
@@ -94,7 +96,7 @@ angular.module('luticateUtils')
|
94
|
96
|
});
|
95
|
97
|
}
|
96
|
98
|
addTemplate(options.templateLoader, 'loaderSplashIsActive()');
|
97
|
|
- addTemplate(options.templateError, 'errorSplashIsActive()');
|
|
99
|
+ //addTemplate(options.templateError, 'errorSplashIsActive()');
|
98
|
100
|
}
|
99
|
101
|
};
|
100
|
102
|
}
|