@@ -13,13 +13,13 @@ export default Ember.Component.extend({
13
13
date : this . getWithDefault ( 'date' , defaults . defaultDate ) ,
14
14
focusOnShow : this . getWithDefault ( 'focusOnShow' , defaults . focusOnShow ) ,
15
15
format : this . getWithDefault ( 'format' , defaults . format ) ,
16
+ locale : this . getWithDefault ( 'locale' , defaults . locale ) ,
16
17
maxDate : this . getWithDefault ( 'maxDate' , defaults . maxDate ) ,
17
18
minDate : this . getWithDefault ( 'minDate' , defaults . minDate ) ,
18
19
showClear : this . getWithDefault ( 'showClear' , defaults . showClear ) ,
19
20
showClose : this . getWithDefault ( 'showClose' , defaults . showClose ) ,
20
21
showTodayButton : this . getWithDefault ( 'showTodayButton' , defaults . showTodayButton ) ,
21
- viewMode : this . getWithDefault ( 'viewMode' , defaults . viewMode ) ,
22
- locale : this . getWithDefault ( 'locale' , defaults . locale ) ,
22
+ viewMode : this . getWithDefault ( 'viewMode' , defaults . viewMode )
23
23
} ) . on ( 'dp.change' , e => {
24
24
// Convert moment to js date or default to null
25
25
let newDate = e . date && e . date . toDate ( ) || null ;
0 commit comments