Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Sep 20, 2022
1 parent 2fceb35 commit 7f292ca
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ export default class ComplexHelper extends Helper {
text = 'abc';
compute(params, hash) {
if (this.text === 'abc') {
later(() => {
this.text += 'd';
this.recompute();
}, 1000);
setTimeout(() => {
later(() => {
this.text += 'd';
this.recompute();
}, 5);
}, 1000)
}
return this.text;
}
Expand Down

0 comments on commit 7f292ca

Please sign in to comment.