|
@ -93,9 +93,9 @@ TimeStep.prototype.setMoment = function (moment) { |
|
|
this.moment = moment; |
|
|
this.moment = moment; |
|
|
|
|
|
|
|
|
// update the date properties, can have a new utcOffset
|
|
|
// update the date properties, can have a new utcOffset
|
|
|
this.current = this.moment(this.current); |
|
|
|
|
|
this._start = this.moment(this._start); |
|
|
|
|
|
this._end = this.moment(this._end); |
|
|
|
|
|
|
|
|
this.current = this.moment(this.current.valueOf()); |
|
|
|
|
|
this._start = this.moment(this._start.valueOf()); |
|
|
|
|
|
this._end = this.moment(this._end.valueOf()); |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|