Skip to content

Commit

Permalink
#32 force no caching for ajax calls behind firewalls
Browse files Browse the repository at this point in the history
  • Loading branch information
obriensystems committed Feb 23, 2017
1 parent d3658ca commit 0047ec9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions biometric.web/src/main/webapp/heart.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

$.ajax({
url: aURL,
success:function(result) {
success: function(result) {
hr1 = result.heartRate1;
hr2 = result.heartRate2;
$("#div1").html("r:" + result.sendSeq + ",s:" + result.recvSeq + ",hr1:" + hr1 + ",hr2:" + hr2
Expand Down Expand Up @@ -174,7 +174,9 @@
prev[i * width + width - 2] = 2;
//}

}}); // ajax
} // success
, cache: false
}); // ajax


// if(timerStateArray[cell]) {
Expand Down Expand Up @@ -4698,6 +4700,6 @@

<canvas id="minigraph" width=300 height=150></canvas>
<div id="map-canvas" ></div>
<p>obrienlabs:20161122 - rel 9</p>
<p>obrienlabs:20170222 - rel 1.0.0</p>
</body>
</html>

0 comments on commit 0047ec9

Please sign in to comment.