Skip to content

Commit

Permalink
resolve issue with type definition files
Browse files Browse the repository at this point in the history
details are here: microsoft/TypeScript#842
  • Loading branch information
doriansmiley committed Nov 2, 2017
1 parent c844077 commit e276c24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/model/recordset/RecordSet.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/model/recordset/RecordSet.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/model/recordset/RecordSet.ts
Expand Up @@ -149,7 +149,7 @@ export class RecordSet extends Subject implements IEventDispatcher{
//TODO:have this reload data instead of clearing it
//set the timeout to _timeToLive. This will clear the recordset at the interval
//calling this accessor multiple times will reset the timeout preserving the records
this._intervalId = setTimeout(() =>{ this.clear }, val);
this._intervalId = window.setTimeout(() =>{ this.clear }, val);
}
this.notify(val, "timeToLive");
}
Expand Down

0 comments on commit e276c24

Please sign in to comment.