Skip to content
This repository was archived by the owner on Dec 26, 2019. It is now read-only.

Commit 037bb6e

Browse files
committed
Add some missing options (fixes #27)
1 parent f3a38c0 commit 037bb6e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

addon/components/datepicker-support.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,28 @@ export default Ember.Mixin.create({
1111
autoclose: this.get('autoclose'),
1212
calendarWeeks: this.get('calendarWeeks'),
1313
clearBtn: this.get('clearBtn'),
14+
container: this.get('widgetContainer'),
1415
daysOfWeekDisabled: this.get('daysOfWeekDisabled'),
16+
defaultViewDate: this.get('defaultViewDate'),
17+
disableTouchKeyboard: this.get('disableTouchKeyboard'),
18+
enableOnReadonly: this.get('enableOnReadonly'),
1519
endDate: this.get('endDate'),
1620
forceParse: this.get('forceParse'),
1721
format: this.get('format'),
22+
immediateUpdates: this.get('immediateUpdates'),
1823
keyboardNavigation: this.get('keyboardNavigation'),
1924
language: this.get('language'),
25+
maxViewMode: this.get('maxViewMode'),
2026
minViewMode: this.get('minViewMode'),
2127
multidate: this.get('multidate'),
2228
multidateSeparator: this.get('multidateSeparator'),
2329
orientation: this.get('orientation'),
30+
showOnFocus: this.get('showOnFocus'),
2431
startDate: this.get('startDate'),
2532
startView: this.get('startView'),
2633
todayBtn: this.get('todayBtn'),
2734
todayHighlight: this.get('todayHighlight'),
35+
toggleActive: this.get('toggleActive'),
2836
weekStart: this.get('weekStart')
2937
}).
3038
on('changeDate', function(event) {

0 commit comments

Comments
 (0)