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

Add tooltips to bulk doc ops in space view

This commit is contained in:
Harvey Kandola 2018-04-12 12:12:48 +01:00
parent 1887eb8100
commit 6c8f23792c
2 changed files with 5 additions and 3 deletions

View file

@ -11,9 +11,10 @@
import { computed } from '@ember/object';
import { A } from "@ember/array"
import TooltipMixin from '../../mixins/tooltip';
import Component from '@ember/component';
export default Component.extend({
export default Component.extend(TooltipMixin, {
showDeleteDialog: false,
showMoveDialog: false,
selectedDocuments: A([]),
@ -94,6 +95,7 @@ export default Component.extend({
this.set('selectedCaption', list.length > 1 ? 'documents' : 'document');
this.set('selectedDocuments', A(list));
this.renderTooltips();
}
}
});