Rename view.timeout to view.timeout_seconds .

This commit is contained in:
Dermot Duffy
2022-01-19 21:16:08 -08:00
parent 6688836aa7
commit 656bd5439e
7 changed files with 24 additions and 23 deletions
+1 -1
View File
@@ -26,9 +26,9 @@ export class CachedValueController<T> implements ReactiveController {
protected _timerID?: number;
constructor(host: ReactiveControllerHost, timerSeconds: number, callback: () => T) {
(this._host = host).addController(this);
this._timerSeconds = timerSeconds;
this._callback = callback;
(this._host = host).addController(this);
}
public removeController(): void {