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

10 lines
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" +
"");
}]);