Fix tests

This commit is contained in:
Daniel Imms
2018-01-22 12:43:42 -08:00
parent 16abf71b78
commit a9d3e61794
+1 -1
View File
@@ -97,7 +97,7 @@ export class Linkifier extends EventEmitter implements ILinkifier {
if (this._rowsTimeoutId) {
clearTimeout(this._rowsTimeoutId);
}
this._rowsTimeoutId = window.setTimeout(() => this._linkifyRows(), Linkifier.TIME_BEFORE_LINKIFY);
this._rowsTimeoutId = <number><any>setTimeout(() => this._linkifyRows(), Linkifier.TIME_BEFORE_LINKIFY);
}
/**