(name: string)
| 1282 | } |
| 1283 | |
| 1284 | createCheckbox(name: string): any { |
| 1285 | var input = document.createElement("INPUT") |
| 1286 | |
| 1287 | input.setAttribute("type", "checkbox") |
| 1288 | input.setAttribute("name", name) |
| 1289 | return input |
| 1290 | } |
| 1291 | |
| 1292 | createSelect(text: string[], values: string[], set: string, dbKey: string): any { |
| 1293 | var select = document.createElement("SELECT") |
no outgoing calls
no test coverage detected