Skip to content

Commit

Permalink
Fix calendar switch to Julian (Bug 65847).
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobw committed Aug 27, 2014
1 parent 27cb0bf commit eb2f8ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/experts/TimeInput.js
Expand Up @@ -73,9 +73,9 @@
return value && value.getValue();
},
function( value ) {
self.calendarRotator._setValue( value );
self.calendarRotator.value( value );
self.calendarRotator.activate();
self.calendarRotator.rotator._setValue( value );
self.calendarRotator.rotator.value( value );
self.calendarRotator.rotator.activate();
}
),
new vv.ExpertExtender.Toggler(
Expand Down

0 comments on commit eb2f8ef

Please sign in to comment.