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

Function moduleListHtml

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

Source from the content-addressed store, hash-verified

4890 }
4891
4892 function moduleListHtml() {
4893 var i,
4894 checked,
4895 html = "";
4896
4897 for (i = 0; i < config.modules.length; i++) {
4898 if (config.modules[i].name !== "") {
4899 checked = config.moduleId.indexOf(config.modules[i].moduleId) > -1;
4900 html += "<li><label class='clickable" + (checked ? " checked" : "") + "'><input type='checkbox' " + "value='" + config.modules[i].moduleId + "'" + (checked ? " checked='checked'" : "") + " />" + escapeText(config.modules[i].name) + "</label></li>";
4901 }
4902 }
4903
4904 return html;
4905 }
4906
4907 function toolbarModuleFilter() {
4908 var commit,

Callers 1

toolbarModuleFilterFunction · 0.85

Calls 1

escapeTextFunction · 0.85

Tested by

no test coverage detected