Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
angular.module("template/carousel/carousel.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("template/carousel/carousel.html",
"<div ng-mouseenter=\"pause()\" ng-mouseleave=\"play()\" class=\"carousel\">\n" +
" <div class=\"full-width carousel-pagination sr-only\" tabindex=\"0\"><span tabindex=\"0\">Image {{getCurrentIndex() + 1}} of {{slides.length}}</span></div>\n" +
" <ol class=\"carousel-indicators\" ng-show=\"slides.length > 1\" aria-hidden=\"true\">\n" +
" <li ng-repeat=\"slide in slides track by $index\" ng-class=\"{active: isActive(slide)}\" alt=\"Image {{$index+1}} of {{slides.length}}\" title=\"Image {{$index+1}} of {{slides.length}}\"></li>\n" +
" </ol>\n" +
" <button class=\"left carousel-control\" ng-click=\"prev()\" ng-show=\"slides.length > 1\" title=\"Previous Image\"><span class=\"sr-only\">Previous Image</span>\n" +
" <span class=\"glyphicon glyphicon-chevron-left\" aria-hidden=\"true\"></span></button>\n" +
" <div class=\"carousel-inner\" ng-transclude></div>\n" +
" <button class=\"right carousel-control\" ng-click=\"next()\" ng-show=\"slides.length > 1\" title=\"Next Image\"><span class=\"sr-only\">Next Image</span>\n" +
" <span class=\"glyphicon glyphicon-chevron-right\" aria-hidden=\"true\"></span></button>\n" +
"</div>\n" +
"");
}]);