diff --git a/components/datepicker/daypicker.ts b/components/datepicker/daypicker.ts
index b4ba9f82c3..0a62aca55c 100644
--- a/components/datepicker/daypicker.ts
+++ b/components/datepicker/daypicker.ts
@@ -7,23 +7,37 @@ import {DatePickerInner} from './datepicker-inner';
//write an interface for template options
const TEMPLATE_OPTIONS:any = {
[Ng2BootstrapTheme.BS4]: {
- DAY_BUTTON: `
-
+ DAY_TITLE: `
+
{{labelz.abbr}} |
+ `,
+ WEEK_ROW: `
+ {{ weekNumbers[index] }} |
+
+
+
+ |
`
},
[Ng2BootstrapTheme.BS3]: {
- DAY_BUTTON: `
-
+ DAY_TITLE: `
+ {{labelz.abbr}} |
+ `,
+ WEEK_ROW: `
+ {{ weekNumbers[index] }} |
+
+
+
+ |
`
}
};
@@ -32,7 +46,7 @@ const CURRENT_THEME_TEMPLATE:any = TEMPLATE_OPTIONS[Ng2BootstrapConfig.theme ||
@Component({
selector: 'daypicker, [daypicker]',
- template: `
+ template: `
@@ -66,17 +80,13 @@ const CURRENT_THEME_TEMPLATE:any = TEMPLATE_OPTIONS[Ng2BootstrapConfig.theme ||
- |
- {{labelz.abbr}} |
+ |
+ ${CURRENT_THEME_TEMPLATE.DAY_TITLE}
- {{ weekNumbers[index] }} |
-
-
- ${CURRENT_THEME_TEMPLATE.DAY_BUTTON}
- |
+ ${CURRENT_THEME_TEMPLATE.WEEK_ROW}
@@ -90,7 +100,7 @@ export class DayPicker implements OnInit {
public rows:Array = [];
public weekNumbers:Array = [];
- constructor(public datePicker: DatePickerInner) {
+ constructor(public datePicker:DatePickerInner) {
}
/*private getDaysInMonth(year:number, month:number) {