Skip to content

Commit

Permalink
Fixed bad method referenced in two TwoRavens/WorldMap Explore buttons…
Browse files Browse the repository at this point in the history
… in the file-button fragment. [ref #2465]
  • Loading branch information
mheppler committed Nov 18, 2016
1 parent 6030e7b commit f358677
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/webapp/file-download-button-fragment.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</h:outputLink>
<p:commandLink rendered="#{downloadPopupRequired}"
type="button" styleClass="btn btn-default"
action="#{guestbookResponseService.initGuestbookResponse(fileMetadata, 'explore')}"
action="#{guestbookResponseService.modifyDatafileAndFormat(guestbookResponse, fileMetadata, 'explore' )}"
update="@widgetVar(downloadPopup)"
oncomplete="PF('downloadPopup').show();handleResizeDialog('downloadPopup');">
<span class="glyphicon glyphicon-equalizer"/> #{bundle.explore}
Expand All @@ -86,7 +86,7 @@
</h:outputLink>
<p:commandLink rendered="#{downloadPopupRequired}"
type="button" styleClass="btn btn-default"
action="#{guestbookResponseService.initGuestbookResponse(fileMetadata, 'worldMap')}"
action="#{guestbookResponseService.modifyDatafileAndFormat(guestbookResponse, fileMetadata, 'worldMap' )}"
update="@widgetVar(downloadPopup)"
oncomplete="PF('downloadPopup').show();handleResizeDialog('downloadPopup');">
<span class="glyphicon glyphicon-equalizer"/> #{bundle.explore}
Expand Down

0 comments on commit f358677

Please sign in to comment.