@@ -702,23 +702,22 @@ <h1>Terminal</h1>
702702 < input type ="text " id ="nodeMsgID " data-mini ="true " placeholder ="nodeID " />
703703 </ span >
704704 < span >
705- < input type ="text " id ="nodeMsgPayload " data-mini ="true " placeholder ="message (ex: BEEP) " />
705+ < input type ="text " id ="nodeMsgPayload " data-mini ="true " placeholder ="message (ex: BEEP) " spellcheck =" false " />
706706 </ span >
707707 < span >
708708 < a data-role ="button "> Send</ a >
709709 </ span >
710710 </ div >
711711 < div class ="terminal simulatedMsg ">
712712 < span >
713- < input type ="text " id ="simulatedMsgPayload " data-mini ="true " placeholder ="simulate a node's data (ex: [123] MOTION) " />
713+ < input type ="text " id ="simulatedMsgPayload " data-mini ="true " placeholder ="simulate a node's data (ex: [123] MOTION) " spellcheck =" false " />
714714 </ span >
715715 < span >
716716 < a data-role ="button "> Simulate</ a >
717717 </ span >
718718 </ div >
719-
720719 < div class ="wrap ">
721- < textarea name ="log " id ="log " rows ="10 " style ="font-size:10px; "> </ textarea >
720+ < textarea name ="log " id ="log " rows ="10 " style ="font-size:10px; " spellcheck =" false " > </ textarea >
722721 </ div >
723722 </ div >
724723
@@ -920,14 +919,14 @@ <h3>Select date range for the CSV export</h3>
920919 + '</div>'
921920 + ':</label>'
922921 + ( setting . type == 'checkbox' ? '<label for="' + sectionName + '-' + settingName + '">' + setting . value + '</label>' : '' )
923- + '<input ' + type + ' name="' + sectionName + '-' + settingName + '" id="' + sectionName + '-' + settingName + '" value="' + setting . value + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="true"' ) + '></li>' ) ;
922+ + '<input ' + type + ' name="' + sectionName + '-' + settingName + '" id="' + sectionName + '-' + settingName + '" value="' + setting . value + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="true"' ) + ' spellcheck="false" ></li>' ) ;
924923 }
925924 else
926925 {
927926 settingLI = $ ( '<li class="ui-field-contain">'
928927 + '<label>' + settingName + ':</label>'
929928 + ( setting . type == 'checkbox' ? '<label for="' + sectionName + '-' + settingName + '">' + setting . value + '</label>' : '' )
930- + '<input ' + type + ' name="' + sectionName + '-' + settingName + '" id="' + sectionName + '-' + settingName + '" value="' + setting . value + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="false"' ) + '></li>' ) ;
929+ + '<input ' + type + ' name="' + sectionName + '-' + settingName + '" id="' + sectionName + '-' + settingName + '" value="' + setting . value + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="false"' ) + ' spellcheck="false" ></li>' ) ;
931930 }
932931
933932 settingsDefBindMap [ sectionName + '.' + settingName + '.value' ] = '#' + sectionName + '-' + settingName ;
@@ -1986,14 +1985,14 @@ <h2>' + (nodeResolveString(node.label||'', node.metrics) || node._id) + ' ' + re
19861985 + '</div>'
19871986 + ':</label>'
19881987 + ( setting . type == 'checkbox' ? '<label for="' + node . _id + '-' + sectionName + '-' + settingName + '">' + nodeSettingValue + '</label>' : '' )
1989- + '<input ' + type + ' name="' + node . _id + '-' + sectionName + '-' + settingName + '" id="' + node . _id + '-' + sectionName + '-' + settingName + '" value="' + nodeSettingValue + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="true" placeholder="' + setting . value + '"' ) + '></li>' ) ;
1988+ + '<input ' + type + ' name="' + node . _id + '-' + sectionName + '-' + settingName + '" id="' + node . _id + '-' + sectionName + '-' + settingName + '" value="' + nodeSettingValue + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="true" placeholder="' + setting . value + '"' ) + ' spellcheck="false" ></li>' ) ;
19901989 }
19911990 else
19921991 {
19931992 settingLI = $ ( '<li class="ui-field-contain">'
19941993 + '<label>' + settingName + ':</label>'
19951994 + ( setting . type == 'checkbox' ? '<label for="' + node . _id + '-' + sectionName + '-' + settingName + '">' + nodeSettingValue + '</label>' : '' )
1996- + '<input ' + type + ' name="' + node . _id + '-' + sectionName + '-' + settingName + '" id="' + node . _id + '-' + sectionName + '-' + settingName + '" value="' + nodeSettingValue + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="false" placeholder="' + setting . value + '"' ) + '></li>' ) ;
1995+ + '<input ' + type + ' name="' + node . _id + '-' + sectionName + '-' + settingName + '" id="' + node . _id + '-' + sectionName + '-' + settingName + '" value="' + nodeSettingValue + '"' + ( setting . editable === false ?' data-clear-btn="false" readonly="readonly"' :' data-clear-btn="false" placeholder="' + setting . value + '"' ) + ' spellcheck="false" ></li>' ) ;
19971996 }
19981997
19991998 if ( setting . type == 'checkbox' )
0 commit comments