mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
'use strict';
|
|
|
|
$(document).on('online', function() {
|
|
console.log('Application got online event, reloading');
|
|
window.location.reload();
|
|
});
|
|
|
|
$(document).ready(function() {
|
|
console.log('Application got ready event');
|
|
window.Nightscout.client.init();
|
|
}); |