diff --git a/packages/mindplot/src/components/widget/Menu.ts b/packages/mindplot/src/components/widget/Menu.ts index 62f43a39..4bc2f225 100644 --- a/packages/mindplot/src/components/widget/Menu.ts +++ b/packages/mindplot/src/components/widget/Menu.ts @@ -325,6 +325,21 @@ class Menu extends IMenu { Menu._registerTooltip('discard', $msg('DISCARD_CHANGES')); } + const shareElem = $('#shareIt'); + if (shareElem.length !== 0) { + Menu._registerTooltip('shareIt', $msg('COLLABORATE')); + } + + const publishElem = $('#publishIt'); + if (publishElem.length !== 0) { + Menu._registerTooltip('publishIt', $msg('PUBLISH')); + } + + const historyElem = $('#history'); + if (historyElem.length !== 0) { + Menu._registerTooltip('history', $msg('HISTORY')); + } + // Keyboard Shortcuts Action ... const keyboardShortcut = $('#keyboardShortcuts'); if (keyboardShortcut.length !== 0) {