From d0e1026c7a502043af6526658a2ffe67468f651e Mon Sep 17 00:00:00 2001 From: mmcw-dev Date: Mon, 23 Oct 2017 01:24:22 -0400 Subject: [PATCH] Don't set expsure to null. --- app/www/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/www/index.html b/app/www/index.html index 472e326..4d0bf98 100644 --- a/app/www/index.html +++ b/app/www/index.html @@ -497,6 +497,9 @@ null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio" }; web.setExposure = function () { var exposure = $('#exposure').val(); + if (exposure === '' || exposure === null) { + exposure = 0; + } var scaledExposure = scaleTime(exposure, STATE.scale); $.ajax({ method : 'POST',