Skip to content

Commit

Permalink
LPS-91317 Include tooltip message
Browse files Browse the repository at this point in the history
  • Loading branch information
adolfopa committed Mar 12, 2019
1 parent 62b4d48 commit 6688551
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Expand Up @@ -182,6 +182,7 @@ public Menu getMenu() throws PortalException {
menu.setDirection("left-side");
menu.setMarkupView("lexicon");
menu.setMenuItems(_getMenuItems());
menu.setMessage(LanguageUtil.get(_resourceBundle, "actions"));
menu.setScroll(false);
menu.setShowWhenSingleIcon(true);
menu.setTriggerCssClass("component-action");
Expand Down
Expand Up @@ -26,7 +26,7 @@ DLFileEntryType fileEntryType = (DLFileEntryType)row.getObject();
direction="left-side"
icon="<%= StringPool.BLANK %>"
markupView="lexicon"
message="<%= StringPool.BLANK %>"
message='<%= LanguageUtil.get(request, "actions") %>'
showWhenSingleIcon="<%= true %>"
>
<c:if test="<%= DLFileEntryTypePermission.contains(permissionChecker, fileEntryType, ActionKeys.UPDATE) %>">
Expand Down
Expand Up @@ -102,7 +102,7 @@ if ((row == null) && portletName.equals(DLPortletKeys.MEDIA_GALLERY_DISPLAY)) {
direction="left-side"
icon="<%= StringPool.BLANK %>"
markupView="lexicon"
message="<%= StringPool.BLANK %>"
message='<%= LanguageUtil.get(request, "actions") %>'
showWhenSingleIcon="<%= true %>"
>

Expand Down

0 comments on commit 6688551

Please sign in to comment.