|
@@ -102,13 +102,13 @@ function retrievePhrData() {
|
|
|
row += "<tr>";
|
|
|
row += "<td>" + d.createDate + "</td>";
|
|
|
if (phrType==="bloodPressure") {
|
|
|
- row += "<td><span class='text-danger'>" + parseInt(d.phrValue) + " / " + (isNaN(parseInt(d.phrValue2)) ? "--" : parseInt(d.phrValue2)) + "</span></td>";
|
|
|
+ row += "<td><span class=''>" + parseInt(d.phrValue) + " / " + (isNaN(parseInt(d.phrValue2)) ? "--" : parseInt(d.phrValue2)) + "</span></td>";
|
|
|
}
|
|
|
else if (phrType==="temperature") {
|
|
|
- row += "<td><span class='text-danger'>" + d.phrValue + "</span></td>";
|
|
|
+ row += "<td><span class=''>" + d.phrValue + "</span></td>";
|
|
|
}
|
|
|
else {
|
|
|
- row += "<td><span class='text-danger'>" + parseInt(d.phrValue) + "</span></td>";
|
|
|
+ row += "<td><span class=''>" + parseInt(d.phrValue) + "</span></td>";
|
|
|
}
|
|
|
row += "<td>" + d.recordedByName + "</td>";
|
|
|
row += "</tr>";
|
|
@@ -911,7 +911,7 @@ $(document).ready(function() {
|
|
|
<c:forEach var="i" begin="1" end="${phrTotal}">
|
|
|
<tr>
|
|
|
<td><c:out value="${phrItems[phrTotal-i].createDate}" /></td>
|
|
|
- <td><span class="text-danger"><c:out value="${phrItems[phrTotal-i].phrValue} ℃" /></span></td>
|
|
|
+ <td><span class=""><c:out value="${phrItems[phrTotal-i].phrValue} ℃" /></span></td>
|
|
|
<td><c:out value="${phrItems[phrTotal-i].recordedByName}" /></td>
|
|
|
</tr>
|
|
|
</c:forEach>
|