1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 21:29:42 +02:00

[WIP] Upgrade EmberJS -- lint pass!

This commit is contained in:
Harvey Kandola 2018-12-08 20:54:19 +00:00
parent c7808d0b5a
commit adbd00bdd7
95 changed files with 645 additions and 645 deletions

View file

@ -12,7 +12,7 @@
import $ from 'jquery';
import { empty } from '@ember/object/computed';
import { inject as service } from '@ember/service';
import { computed } from '@ember/object';
import { computed, observer } from '@ember/object';
import Notifier from '../../mixins/notifier';
import Modals from '../../mixins/modal';
import Component from '@ember/component';
@ -33,7 +33,7 @@ export default Component.extend(Notifier, Modals, {
return this.get('blocks.length') > 0;
}),
onModalToggle: function () {
onModalToggle: observer('show', function() {
let modalId = this.get('modalId');
if (this.get('show')) {
@ -48,7 +48,7 @@ export default Component.extend(Notifier, Modals, {
$(modalId).modal('hide');
$(modalId).modal('dispose');
}
}.observes('show'),
}),
addSection(model) {
this.modalClose(this.get('modalId'));