mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
* * Full refactor of the clockface code. Clocks now get their own small javascript bundle that contains the bare minimum client (from /lib/client/clock-client.js) * Clocks no longer have separate HTML files but each has unique CSS definitions * Fixed the bug where a finger measurement showed NaN in the clock * Update shrinkwrap to match package.json * Revert accidental index.html changes * Bunch of minor fixes (#4641) * Add triple arrows * remove time * grey arrows on bgclock * try again on arrow fill * Update bgclock.css * fix double-mmol-conversion * Update clock-client.js * tabs to spaces everywhere * Refactors based on Jason's comments * Remove the clock bundle generation from app.js
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
|
|
$ = require("jquery");
|
|
|
|
window.Nightscout = {
|
|
client: require('../lib/client/clock-client'),
|
|
units: require('../lib/units')(),
|
|
};
|
|
|
|
console.info('Nightscout clock bundle ready'); |