Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
Update unidimensionalStatsFrag.jsp
Browse files Browse the repository at this point in the history
put in extra or statements so showing more stats depends on more than one estimate being available
  • Loading branch information
jwgwarren committed Apr 25, 2014
1 parent f810922 commit f1690bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WebContent/WEB-INF/views/unidimensionalStatsFrag.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<%-- some *** result should be here: ${unidimensionalChartDataSet.statsObjects[1].result} --%>
<c:if test="${fn:length(unidimensionalChartDataSet.statsObjects)>1}">
<c:set var="data" value="${unidimensionalChartDataSet.statsObjects[1]}"></c:set>
<c:if test="${data.result.blupsTest!=null }">
<c:if test="${data.result.blupsTest!=null or data.result.interceptEstimate!=null or data.result.varianceSignificance!=null}">
<p><a><i class="fa" id="toggle_table_button${experimentNumber}">More Statistics</i></a></p>
<div id="toggle_table${experimentNumber}">
<table>
Expand Down Expand Up @@ -145,4 +145,4 @@
'corner' : 'right top'
});
});
</script>
</script>

0 comments on commit f1690bc

Please sign in to comment.