We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf87566 commit cb15c69Copy full SHA for cb15c69
tinawebJS/enviroment.js
@@ -145,6 +145,17 @@ function writeLabel (aMapLabel) {
145
document.getElementById('maplabel').innerHTML = aMapLabel
146
}
147
148
+
149
+function alertCheckBox(eventCheck){
150
+ // NB: we use 2 booleans to adapt to SHIFT checking
151
+ // - var TW.gui.checkBox ---------> has the real box state
152
+ // - var TW.gui.manuallyChecked --> remembers if it was changed here
153
+ if(!isUndef(eventCheck.checked)) {
154
+ TW.gui.checkBox=eventCheck.checked;
155
+ TW.gui.manuallyChecked = eventCheck.checked
156
+ }
157
+}
158
159
function createFilechooserEl () {
160
161
var inputComment = document.createElement("p")
0 commit comments