DEV: replaces setTimeout by Ember.run.later (#6618)

This commit is contained in:
Joffrey JAFFEUX
2018-11-19 10:46:38 +01:00
committed by Régis Hanol
parent f2c227432c
commit 907cf3ee2f
8 changed files with 9 additions and 13 deletions
@@ -40,7 +40,7 @@ export default Ember.Controller.extend({
);
}
setTimeout(() => {
Ember.run.later(() => {
this.set("model.savingStatus", null);
}, 2000);