Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(ngModel): do not reset bound date objects #8912

Closed
wants to merge 1 commit into from

Conversation

btford
Copy link
Contributor

@btford btford commented Sep 3, 2014

Closes #6666

@btford btford added this to the 1.3.0-rc.1 milestone Sep 3, 2014
@btford
Copy link
Contributor Author

btford commented Sep 3, 2014

@tbosch Can you please review this?

@@ -1068,7 +1095,7 @@ function createDateInputType(type, regexp, parseDate, format) {
ctrl.$parsers.push(function(value) {
if (ctrl.$isEmpty(value)) return null;
if (regexp.test(value)) {
var parsedDate = parseDate(value);
var parsedDate = parseDate(value, ctrl.$modelValue, timezone);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only pass in value and ctrl.$modelValue.
If timezone===UTC then clone the date in ctrl.$modelValue and adjust the timezone here, so that you can use the normal getDay(), ... in the date and week parser.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done; how's it look now?

@btford btford force-pushed the fix-input-date branch 2 times, most recently from 9e55c46 to b48fcd7 Compare September 5, 2014 23:03
compileInput('<input type="month" ng-model="value" ng-model-options="{timezone: \'UTC\'}" />');

scope.$apply(function() {
scope.value = new Date(Date.UTC(2013, 7, 1, 1, 0, 0));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also add milliseconds

@jeffbcross jeffbcross modified the milestones: 1.3.0-rc.1, 1.3.0-rc.2 Sep 9, 2014
@tbosch
Copy link
Contributor

tbosch commented Sep 10, 2014

LGTM

@btford
Copy link
Contributor Author

btford commented Sep 10, 2014

Landed as 1a1ef62.

@btford btford closed this Sep 10, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Change datetime individual
4 participants