diff --git a/client/main.js b/client/main.js index aaafdbe..5734908 100755 --- a/client/main.js +++ b/client/main.js @@ -98,6 +98,19 @@ var Support = this.shell.run (command, 0, wait); }, + + _onLoad: function () + { + var select = this.$('operator'); + + for (var i = 1; i <= 10; i++) + { + var option = document.createElement ('option'); + option.value = i; + option.appendChild (document.createTextNode (i)); + select.appendChild (option); + } + }, _onStartClick: function () { @@ -118,3 +131,4 @@ var Support = }; Support.init (); + diff --git a/client/vn-support.hta b/client/vn-support.hta index 0b4a18f..366ce5f 100755 --- a/client/vn-support.hta +++ b/client/vn-support.hta @@ -20,16 +20,12 @@ sysmenu="yes" windowsstate="normal"/> -
+