fix adjusted time offset.
This commit is contained in:
parent
8b3db92bbf
commit
42ede54e94
@ -22,6 +22,7 @@ var assert = utils.assert;
|
|||||||
* @property {Array} samples
|
* @property {Array} samples
|
||||||
* @property {Object} known
|
* @property {Object} known
|
||||||
* @property {Number} limit
|
* @property {Number} limit
|
||||||
|
* @property {Number} offset
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function AdjustedTime(limit) {
|
function AdjustedTime(limit) {
|
||||||
@ -36,6 +37,7 @@ function AdjustedTime(limit) {
|
|||||||
this.samples = [];
|
this.samples = [];
|
||||||
this.known = {};
|
this.known = {};
|
||||||
this.limit = limit;
|
this.limit = limit;
|
||||||
|
this.offset = 0;
|
||||||
this._checked = false;
|
this._checked = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user