nightscout
Version:
Nightscout acts as a web-based CGM (Continuous Glucose Monitor) to allow multiple caregivers to remotely view a patients glucose data in realtime.
34 lines (31 loc) • 815 B
JavaScript
var predictions = {
offset: 0,
backward: function () {
this.offset -= 5;
this.updateOffsetHtml();
},
forward: function () {
this.offset += 5;
this.updateOffsetHtml();
},
moreBackward: function () {
this.offset -= 30;
this.updateOffsetHtml();
},
moreForward: function () {
this.offset += 30;
this.updateOffsetHtml();
},
reset: function () {
this.offset = 0;
this.updateOffsetHtml();
},
updateOffsetHtml: function () {
$('#rp_predictedOffset').html(this.offset);
}
};
$(document).on('change', '#rp_optionspredicted', function() {
$('#rp_predictedSettings').toggle(this.checked);
predictions.reset();
});
module.exports = predictions;