11 lines
465 B
JavaScript
11 lines
465 B
JavaScript
angular.module("uib/template/popover/popover-html.html", []).run(["$templateCache", function ($templateCache) {
|
|
$templateCache.put("uib/template/popover/popover-html.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\" ng-bind-html=\"contentExp()\"></div>\n" +
|
|
"</div>\n" +
|
|
"");
|
|
}]);
|