Skip to content

Commit

Permalink
Applied bug fix for when "View" tooltip in the Manage Guestbooks tabl…
Browse files Browse the repository at this point in the history
…e would display over the popup. [ref IQSS#1781]
  • Loading branch information
mheppler committed Aug 26, 2015
1 parent aed7490 commit cd73407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/webapp/manage-guestbooks.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<div class="btn-group" role="group">
<p:commandLink type="button" styleClass="btn btn-default bootstrap-button-tooltip"
action="#{manageGuestbooksPage.viewSelectedGuestbook(guestbook)}"
oncomplete="viewGuestbook.show()"
oncomplete="viewGuestbook.show();bind_bsui_components();"
update=":manageGuestbooksForm"
title="#{bundle['dataset.manageGuestbooks.tab.action.btn.view']}">
<span class="glyphicon glyphicon-eye-open"></span>
Expand All @@ -116,7 +116,7 @@
<p:commandLink type="button" styleClass="btn btn-default bootstrap-button-tooltip"
action="#{manageGuestbooksPage.setSelectedGuestbook(guestbook)}"
rendered="#{manageGuestbooksPage.dataverse.id eq guestbook.dataverse.id and guestbook.deletable}"
oncomplete="deleteConfirmation.show()"
oncomplete="deleteConfirmation.show();bind_bsui_components();"
title="#{bundle['dataset.manageGuestbooks.tab.action.btn.delete']}">
<span class="glyphicon glyphicon-trash"></span>
</p:commandLink>
Expand Down

0 comments on commit cd73407

Please sign in to comment.