angular-ui-bootstrap-4
Version:
Native AngularJS (Angular) directives for Bootstrap
10 lines (9 loc) • 562 B
JavaScript
angular.module("uib/template/datepicker/datepicker.html", []).run(["$templateCache", function ($templateCache) {
$templateCache.put("uib/template/datepicker/datepicker.html",
"<div ng-switch=\"datepickerMode\">\n" +
" <div uib-daypicker ng-switch-when=\"day\" tabindex=\"0\" class=\"uib-daypicker\"></div>\n" +
" <div uib-monthpicker ng-switch-when=\"month\" tabindex=\"0\" class=\"uib-monthpicker\"></div>\n" +
" <div uib-yearpicker ng-switch-when=\"year\" tabindex=\"0\" class=\"uib-yearpicker\"></div>\n" +
"</div>\n" +
"");
}]);