Skip to content

Commit

Permalink
DEV: Fix tests and another attept at debouncing title decryption.
Browse files Browse the repository at this point in the history
  • Loading branch information
udan11 committed Jan 30, 2019
1 parent 012f070 commit 6523d17
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -71,7 +71,9 @@ export default {
var self = this;
Ember.Component.reopen({
didRender() {
Ember.run.debounce(self, decryptTitles, 500);
Ember.run.scheduleOnce("afterRender", self, () => {
Ember.run.debounce(self, decryptTitles, 500);
});
return this._super(...arguments);
}
});
Expand Down

0 comments on commit 6523d17

Please sign in to comment.