-
Notifications
You must be signed in to change notification settings - Fork 71.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2736 from sulkaharo/wip/variability
Variability reporting, Webpack bundling
- Loading branch information
Showing
82 changed files
with
9,258 additions
and
1,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,5 @@ coverage/ | |
|
||
npm-debug.log | ||
*.heapsnapshot | ||
|
||
/tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,34 @@ | ||
(function () { | ||
import '../static/css/drawer.css'; | ||
import '../static/css/dropdown.css'; | ||
import '../static/css/sgv.css'; | ||
import '../node_modules/jquery.tipsy/src/jquery.tipsy.css'; | ||
|
||
window._ = require('lodash'); | ||
window.d3 = require('d3'); | ||
window.$ = window.jQuery = require('jquery'); | ||
window.moment = require('moment-timezone'); | ||
window.sugar = require('sugar'); | ||
window.crossfilter = require('crossfilter'); | ||
window.Nightscout = window.Nightscout || {}; | ||
|
||
window.Nightscout = { | ||
client: require('../lib/client') | ||
, units: require('../lib/units')() | ||
, report_plugins: require('../lib/report_plugins/')() | ||
, admin_plugins: require('../lib/admin_plugins/')() | ||
}; | ||
$ = require("jquery"); | ||
|
||
console.info('Nightscout bundle ready'); | ||
require('jquery-ui-bundle'); | ||
|
||
})(); | ||
window._ = require('lodash'); | ||
window.d3 = require('d3'); | ||
|
||
require('jquery.tipsy'); | ||
|
||
window.Storage = require('js-storage'); | ||
|
||
require('flot'); | ||
require('../node_modules/flot/jquery.flot.time'); | ||
require('../node_modules/flot/jquery.flot.pie'); | ||
require('../node_modules/flot/jquery.flot.fillbetween'); | ||
|
||
window.moment = require('moment-timezone'); | ||
|
||
window.Nightscout = window.Nightscout || {}; | ||
|
||
window.Nightscout = { | ||
client: require('../lib/client'), | ||
units: require('../lib/units')(), | ||
report_plugins: require('../lib/report_plugins/')(), | ||
admin_plugins: require('../lib/admin_plugins/')() | ||
}; | ||
|
||
console.info('Nightscout bundle ready'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.