mirror of
https://github.com/documize/community.git
synced 2025-08-09 15:35:27 +02:00
misc. fixes
This commit is contained in:
parent
e03bb4d6ee
commit
48a60f0fcd
4 changed files with 12 additions and 10 deletions
|
@ -67,6 +67,7 @@ export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
|
|||
|
||||
willDestroyElement() {
|
||||
this.eventBus.unsubscribe('documentPageAdded');
|
||||
this.destroyTooltips();
|
||||
},
|
||||
|
||||
onDocumentPageAdded(pageId) {
|
||||
|
|
|
@ -22,6 +22,10 @@ export default Ember.Component.extend(TooltipMixin, {
|
|||
}
|
||||
},
|
||||
|
||||
willDestroyElement() {
|
||||
this.destroyTooltips();
|
||||
},
|
||||
|
||||
actions: {
|
||||
editPage(id) {
|
||||
this.attrs.onEditPage(id);
|
||||
|
|
|
@ -197,7 +197,6 @@ export default Ember.Controller.extend(NotifierMixin, {
|
|||
},
|
||||
|
||||
onDocumentDelete() {
|
||||
console.log("deleting " + this.get('model.id'));
|
||||
let self = this;
|
||||
|
||||
this.get('documentService').deleteDocument(this.get('model.id')).then(function() {
|
||||
|
|
|
@ -7,11 +7,9 @@
|
|||
<i class="material-icons">mode_edit</i>
|
||||
</div>
|
||||
{{/link-to}}
|
||||
{{#unless page.firstPage}}
|
||||
<div class="round-button-mono page-delete-button" data-tooltip="Delete" data-tooltip-position="top center" {{action 'deletePage' page.id}}>
|
||||
<i class="material-icons">delete</i>
|
||||
</div>
|
||||
{{/unless}}
|
||||
<div class="round-button-mono page-delete-button" data-tooltip="Delete" data-tooltip-position="top center" {{action 'deletePage' page.id}}>
|
||||
<i class="material-icons">delete</i>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue