MCPcopy
hub / github.com/Mottie/Keyboard / toolbarLooseFilter

Function toolbarLooseFilter

testing/qunit-2.9.2.js:4865–4890  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4863 }
4864
4865 function toolbarLooseFilter() {
4866 var filter = document.createElement("form"),
4867 label = document.createElement("label"),
4868 input = document.createElement("input"),
4869 button = document.createElement("button");
4870
4871 addClass(filter, "qunit-filter");
4872
4873 label.innerHTML = "Filter: ";
4874
4875 input.type = "text";
4876 input.value = config.filter || "";
4877 input.name = "filter";
4878 input.id = "qunit-filter-input";
4879
4880 button.innerHTML = "Go";
4881
4882 label.appendChild(input);
4883
4884 filter.appendChild(label);
4885 filter.appendChild(document.createTextNode(" "));
4886 filter.appendChild(button);
4887 addEvent(filter, "submit", interceptNavigation);
4888
4889 return filter;
4890 }
4891
4892 function moduleListHtml() {
4893 var i,

Callers 1

appendToolbarFunction · 0.85

Calls 2

addClassFunction · 0.85
addEventFunction · 0.85

Tested by

no test coverage detected