Attach functions to the window option so that cordova does not break.

This commit is contained in:
mmcwilliams 2017-11-22 12:45:52 -05:00
parent 87473cd403
commit 0c267fa9fb
2 changed files with 14 additions and 13 deletions

View File

@ -11,14 +11,15 @@ const STATE = {
scale : 'ms',
delayScale : 'ms',
counter : 0
}
};
//functions
let frame;
let getState;
let setDir;
let setExposure;
let setDelay;
let setCounter;
window.frame = null;
window.getState = null;
window.setDir = null;
window.setExposure = null;
window.setDelay = null;
window.setCounter = null;
//ms
var shutter = function (exposure) {
let fraction = BOLEX.expected / 1000;

View File

@ -162,11 +162,11 @@ web.useJson = function (res) {
return res.json();
}
web.init = function () {
frame = web.frame;
getState = web.getState;
setDir = web.setDir;
setExposure = web.setExposure;
setCounter = web.setCounter;
window.frame = web.frame;
window.getState = web.getState;
window.setDir = web.setDir;
window.setExposure = web.setExposure;
window.setCounter = web.setCounter;
web.getState();
getState();
};