DEV: introduces prettier for es6 files

This commit is contained in:
Joffrey JAFFEUX
2018-06-15 17:03:24 +02:00
committed by GitHub
parent c7ee70941e
commit 03a7d532cf
1162 changed files with 60667 additions and 29659 deletions

View File

@ -1,6 +1,6 @@
import computed from 'ember-addons/ember-computed-decorators';
import computed from "ember-addons/ember-computed-decorators";
const ACTIONS = ['delete', 'edit', 'none'];
const ACTIONS = ["delete", "edit", "none"];
export default Ember.Component.extend({
postAction: null,
postEdit: null,
@ -12,19 +12,19 @@ export default Ember.Component.extend({
});
},
editing: Ember.computed.equal('postAction', 'edit'),
editing: Ember.computed.equal("postAction", "edit"),
actions: {
penaltyChanged() {
let postAction = this.get('postAction');
let postAction = this.get("postAction");
// If we switch to edit mode, jump to the edit textarea
if (postAction === 'edit') {
Ember.run.scheduleOnce('afterRender', () => {
if (postAction === "edit") {
Ember.run.scheduleOnce("afterRender", () => {
let $elem = this.$();
let body = $elem.closest('.modal-body');
let body = $elem.closest(".modal-body");
body.scrollTop(body.height());
$elem.find('.post-editor').focus();
$elem.find(".post-editor").focus();
});
}
}