1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-20 13:49:42 +02:00

WIP document view

This commit is contained in:
Harvey Kandola 2017-12-04 14:47:44 +00:00
parent 2d7e3c2904
commit 60fb4e5008
11 changed files with 139 additions and 134 deletions

View file

@ -10,14 +10,11 @@
// https://documize.com
import { empty } from '@ember/object/computed';
import { schedule } from '@ember/runloop';
import { inject as service } from '@ember/service';
import Component from '@ember/component';
import NotifierMixin from '../../mixins/notifier';
import TooltipMixin from '../../mixins/tooltip';
export default Component.extend(NotifierMixin, TooltipMixin, {
export default Component.extend({
documentService: service('document'),
editMode: false,
docName: '',
@ -49,14 +46,9 @@ export default Component.extend(NotifierMixin, TooltipMixin, {
this.set('document.name', this.get('docName'));
this.set('document.excerpt', this.get('docExcerpt'));
this.showNotification('Saved');
this.get('browser').setTitle(this.get('document.name'));
this.get('browser').setMetaDescription(this.get('document.excerpt'));
this.get('documentService').save(this.get('document'));
this.set('editMode', false);
this.attrs.onSaveDocument(this.get('document'));
},
onCancel() {