@@ -32,7 +32,11 @@ function($scope, $element, $attrs, $compile, $log, $parse, $window, $document, $
32
32
33
33
this . init = function ( _ngModel_ ) {
34
34
ngModel = _ngModel_ ;
35
- ngModelOptions = _ngModel_ . $options ;
35
+ ngModelOptions = angular . isObject ( _ngModel_ . $options ) ?
36
+ _ngModel_ . $options :
37
+ {
38
+ timezone : null
39
+ } ;
36
40
closeOnDateSelection = angular . isDefined ( $attrs . closeOnDateSelection ) ?
37
41
$scope . $parent . $eval ( $attrs . closeOnDateSelection ) :
38
42
datepickerPopupConfig . closeOnDateSelection ;
@@ -123,13 +127,13 @@ function($scope, $element, $attrs, $compile, $log, $parse, $window, $document, $
123
127
value = new Date ( value ) ;
124
128
}
125
129
126
- $scope . date = value ;
130
+ $scope . date = dateParser . fromTimezone ( value , ngModelOptions . timezone ) ;
127
131
128
132
return dateParser . filter ( $scope . date , dateFormat ) ;
129
133
} ) ;
130
134
} else {
131
135
ngModel . $formatters . push ( function ( value ) {
132
- $scope . date = value ;
136
+ $scope . date = dateParser . fromTimezone ( value , ngModelOptions . timezone ) ;
133
137
return value ;
134
138
} ) ;
135
139
}
@@ -181,7 +185,7 @@ function($scope, $element, $attrs, $compile, $log, $parse, $window, $document, $
181
185
182
186
$scope . isDisabled = function ( date ) {
183
187
if ( date === 'today' ) {
184
- date = new Date ( ) ;
188
+ date = dateParser . fromTimezone ( new Date ( ) , ngModelOptions . timezone ) ;
185
189
}
186
190
187
191
var dates = { } ;
@@ -328,7 +332,7 @@ function($scope, $element, $attrs, $compile, $log, $parse, $window, $document, $
328
332
if ( angular . isString ( viewValue ) ) {
329
333
var date = parseDateString ( viewValue ) ;
330
334
if ( ! isNaN ( date ) ) {
331
- return date ;
335
+ return dateParser . fromTimezone ( date , ngModelOptions . timezone ) ;
332
336
}
333
337
}
334
338
0 commit comments