10 lines
398 B
JavaScript
10 lines
398 B
JavaScript
angular.module("uib/template/modal/backdrop.html", []).run(["$templateCache", function($templateCache) {
|
|
$templateCache.put("uib/template/modal/backdrop.html",
|
|
"<div class=\"modal-backdrop\"\n" +
|
|
" uib-modal-animation-class=\"fade\"\n" +
|
|
" modal-in-class=\"in\"\n" +
|
|
" ng-style=\"{'z-index': 1040 + (index && 1 || 0) + index*10}\"\n" +
|
|
"></div>\n" +
|
|
"");
|
|
}]);
|