Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

[CLEANUP] eslint keyword-spacing #771

Merged
merged 1 commit into from
Oct 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/adapters/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default Adapter.extend(PouchAdapterUtils, {
}
});
}
} catch (err) {
} catch(err) {
this._pouchError(reject)(err);
}
}, 'findQuery in application-pouchdb-adapter');
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/abstract-edit-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default Ember.Controller.extend(EditPanelProps, IsUpdateDisabled, ModalHe
this.displayAlert('Error!!!!', `An error occurred while attempting to save: ${JSON.stringify(err)}`);
}
});
} catch (ex) {
} catch(ex) {
this.displayAlert('Error!!!!', `An error occurred while attempting to save: ${ex}`);
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/services/filesystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default Ember.Service.extend({
filer.init({ persistent: true, size: size }, function() {
try {
this.set('filer', filer);
} catch (ignored) {
} catch(ignored) {
// Exception may happen during testing an can be ignored.
}
}.bind(this));
Expand Down