Skip to content

Commit

Permalink
Merge branch 'hotfix/0.3.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhanifin committed Aug 3, 2014
2 parents 7ce02a1 + 0f231a4 commit c1b2988
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nightscout",
"version": "0.3.4",
"version": "0.3.5",
"dependencies": {
"d3": "3.4.3",
"jquery": "2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Nightscout",
"version": "0.3.4",
"version": "0.3.5",
"description": "Nightscout acts as a web-based CGM (Continuous Glucose Montinor) to allow multiple caregivers to remotely view a patients glucose data in realtime.",
"license": "MIT",
"author": "Nightscout Team",
Expand Down
6 changes: 3 additions & 3 deletions static/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
} else {
$('.container .currentBG')
.text("---")
.css('text-decoration','none');
.css('text-decoration','');
}
$('#currentTime')
.text(formatTime(new Date(brushExtent[1] - THIRTY_MINS_IN_MS)))
Expand All @@ -244,10 +244,10 @@
nowDate = dateTime;
$('#currentTime')
.text(formatTime(dateTime))
.css('text-decoration','none');
.css('text-decoration','');
$('.container .currentBG')
.text(scaleBg(latestSGV.y))
.css('text-decoration','none');
.css('text-decoration','');
$('.container .currentDirection')
.html(latestSGV.direction);
}
Expand Down

0 comments on commit c1b2988

Please sign in to comment.