(name, id, oc)
| 91 | }; |
| 92 | |
| 93 | var createFileInput = function(name, id, oc) { |
| 94 | var input = crc('input', 'import', 'file', null, null, true); |
| 95 | if (!input.inserted) { |
| 96 | input.type = 'file'; |
| 97 | if (oc) input.addEventListener("change", oc); |
| 98 | } |
| 99 | return input; |
| 100 | }; |
| 101 | |
| 102 | var createTextarea = function(title, i, oc) { |
| 103 | var s = cr('div', i.name, i.id, 'textarea'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…