2025-08-12 13:33:25 +03:00

10 lines
440 B
JavaScript

angular.module("uib/template/alert/alert.html", []).run(["$templateCache", function ($templateCache) {
$templateCache.put("uib/template/alert/alert.html",
"<button ng-show=\"closeable\" type=\"button\" class=\"close\" ng-click=\"close({$event: $event})\">\n" +
" <span aria-hidden=\"true\">&times;</span>\n" +
" <span class=\"sr-only\">Close</span>\n" +
"</button>\n" +
"<div ng-transclude></div>\n" +
"");
}]);