MCPcopy Index your code
hub / github.com/Threadfin/Threadfin / createInput

Method createInput

html/js/menu_ts.js:1027–1036  ·  view source on GitHub ↗
(type, name, value)

Source from the content-addressed store, hash-verified

1025 this.table.appendChild(tr);
1026 }
1027 createInput(type, name, value) {
1028 var input = document.createElement("INPUT");
1029 if (value == undefined) {
1030 value = "";
1031 }
1032 input.setAttribute("type", type);
1033 input.setAttribute("name", name);
1034 input.setAttribute("value", value);
1035 return input;
1036 }
1037 createCheckbox(name) {
1038 var input = document.createElement("INPUT");
1039 input.setAttribute("type", "checkbox");

Callers 3

openPopUpFunction · 0.95
createWizardMethod · 0.95
createSettingsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected