apply prettier on plugins (#7605)

This commit is contained in:
Joffrey JAFFEUX 2019-05-27 11:06:11 +02:00 committed by GitHub
parent d93f753b17
commit b98b994fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -92,8 +92,7 @@ export default Ember.Component.extend({
this.messageBus.subscribe( this.messageBus.subscribe(
r.messagebus_channel, r.messagebus_channel,
message => { message => {
if (!this.isDestroyed) if (!this.isDestroyed) this.set("presenceUsers", message.users);
this.set("presenceUsers", message.users);
this._clearTimer = Ember.run.debounce( this._clearTimer = Ember.run.debounce(
this, this,
"clear", "clear",

View File

@ -21,10 +21,7 @@ function initializePollUIBuilder(api) {
actions: { actions: {
showPollBuilder() { showPollBuilder() {
showModal("poll-ui-builder").set( showModal("poll-ui-builder").set("toolbarEvent", this.toolbarEvent);
"toolbarEvent",
this.toolbarEvent
);
} }
} }
}); });