Add language "and clear counter" to reset confirmation dialog.

This commit is contained in:
mmcwilliams 2018-02-08 11:51:43 -05:00
parent a37c58d791
commit b56afa3ba7
1 changed files with 5 additions and 1 deletions

View File

@ -599,7 +599,7 @@ mobile.EV = function (fstop, shutter) {
};
mobile.reset = function () {
const reset = confirm(`Reset INTVAL3 to default settings?`);
const reset = confirm(`Reset INTVAL3 to default settings and clear counter?`);
if (!reset) return false;
let opts = {
type : 'reset'
@ -617,6 +617,10 @@ mobile.resetSuccess = function () {
mobile.getState();
};
mobile.update = function () {
};
/**
* Mobile helper functions
*/