13 lines
576 B
JavaScript
13 lines
576 B
JavaScript
angular.module("uib/template/popover/popover-template.html", []).run(["$templateCache", function ($templateCache) {
|
|
$templateCache.put("uib/template/popover/popover-template.html",
|
|
"<div class=\"arrow\"></div>\n" +
|
|
"\n" +
|
|
"<div class=\"popover-inner\">\n" +
|
|
" <h3 class=\"popover-title\" ng-bind=\"uibTitle\" ng-if=\"uibTitle\"></h3>\n" +
|
|
" <div class=\"popover-content\"\n" +
|
|
" uib-tooltip-template-transclude=\"contentExp()\"\n" +
|
|
" tooltip-template-transclude-scope=\"originScope()\"></div>\n" +
|
|
"</div>\n" +
|
|
"");
|
|
}]);
|