DEV: Import ember ENV instead of Ember.testing (#8305)

This commit is contained in:
Mark VanLandingham
2019-11-07 11:20:35 -06:00
committed by GitHub
parent 60a235d128
commit 9ffdbf912f
32 changed files with 75 additions and 37 deletions

View File

@@ -51,7 +51,8 @@ export default Route.extend({
})
.catch(function(error) {
badge.set("preview_loading", false);
Ember.Logger.error(error);
// eslint-disable-next-line no-console
console.error(error);
bootbox.alert("Network error");
});
}