Skip to content

Commit

Permalink
use fully qualified client.utils
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoncalabrese committed Oct 20, 2015
1 parent 28be0c5 commit dc06000
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/client/ticks.js
Expand Up @@ -14,11 +14,11 @@ function prepare (client, scaleY) {
if (client.settings.units === 'mmol') {
return [
2.0
, Math.round(utils.scaleMgdl(client.settings.thresholds.bgLow))
, Math.round(utils.scaleMgdl(client.settings.thresholds.bgTargetBottom))
, Math.round(client.utils.scaleMgdl(client.settings.thresholds.bgLow))
, Math.round(client.utils.scaleMgdl(client.settings.thresholds.bgTargetBottom))
, 6.0
, Math.round(utils.scaleMgdl(client.settings.thresholds.bgTargetTop))
, Math.round(utils.scaleMgdl(client.settings.thresholds.bgHigh))
, Math.round(client.utils.scaleMgdl(client.settings.thresholds.bgTargetTop))
, Math.round(client.utils.scaleMgdl(client.settings.thresholds.bgHigh))
, 22.0
];
} else {
Expand Down

0 comments on commit dc06000

Please sign in to comment.