├── js ├── MyFile.txt ├── slider.js ├── easypiechart-data.js ├── shift.js ├── save.js ├── vrtracker.js ├── markAttachment.js ├── abutment.js ├── html5shiv.min.js ├── chart-data.js ├── respond.min.js ├── exporting.js ├── visualizer.js ├── keyboard.js ├── utils.js ├── easypiechart.js ├── constraint.js ├── parser.js └── highcharts-3d.js ├── .gitignore ├── img └── visualizer.png ├── css ├── tether.sass ├── mixins │ ├── _pie-clearfix.sass │ └── _inline-block.sass ├── tether-theme-basic.sass ├── helpers │ ├── _tether.sass │ ├── _tether-theme-basic.sass │ └── _tether-theme-arrows.sass ├── tether-theme-arrows.sass ├── tether-theme-arrows-dark.sass ├── bootstrap-table.css ├── styles2.css ├── bootstrap-theme.min.css └── datepicker.css ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── index.html ├── tables ├── data2.json └── data1.json ├── README.md ├── visualizer.html ├── calibration.html └── dashboard.html /js/MyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /img/visualizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-Tracker/Master-Control/HEAD/img/visualizer.png -------------------------------------------------------------------------------- /css/tether.sass: -------------------------------------------------------------------------------- 1 | @import helpers/tether 2 | 3 | $themePrefix: "tether" 4 | 5 | +tether($themePrefix: $themePrefix) -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-Tracker/Master-Control/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-Tracker/Master-Control/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-Tracker/Master-Control/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /css/mixins/_pie-clearfix.sass: -------------------------------------------------------------------------------- 1 | @mixin pie-clearfix 2 | *zoom: 1 3 | 4 | &:after 5 | content: "" 6 | display: table 7 | clear: both 8 | -------------------------------------------------------------------------------- /css/mixins/_inline-block.sass: -------------------------------------------------------------------------------- 1 | @mixin inline-block 2 | display: inline-block 3 | vertical-align: middle 4 | *vertical-align: auto 5 | *zoom: 1 6 | *display: inline 7 | -------------------------------------------------------------------------------- /js/slider.js: -------------------------------------------------------------------------------- 1 | function nextTab(elem) { 2 | $(elem).next().find('a[data-toggle="tab"]').click(); 3 | } 4 | function prevTab(elem) { 5 | $(elem).prev().find('a[data-toggle="tab"]').click(); 6 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |