summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base/htdocs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-10-19 19:16:00 +0200
committerJo-Philipp Wich <jo@mein.io>2018-11-05 11:01:45 +0100
commit911d540cbbcd7218cc6768aa177766cab0835fce (patch)
tree4c3e0da8e056aac461819704ecc65412598558b5 /modules/luci-base/htdocs
parent7337872aa11f0d343b11bb8f3a5ffc12a82076ea (diff)
luci-base: cbi.js: drop cbi_bind()
Just use node.addEventListener() directly since all reasonably recent browsers support it nowadays. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/htdocs')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/cbi.js44
1 files changed, 13 insertions, 31 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js
index 200b021a9..f4b0ba349 100644
--- a/modules/luci-base/htdocs/luci-static/resources/cbi.js
+++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js
@@ -729,7 +729,7 @@ function cbi_init() {
for (var i = 0, node; (node = nodes[i]) !== undefined; i++) {
var events = node.getAttribute('data-update').split(' ');
for (var j = 0, event; (event = events[j]) !== undefined; j++)
- cbi_bind(node, event, cbi_d_update);
+ node.addEventListener(event, cbi_d_update);
}
nodes = document.querySelectorAll('[data-choices]');
@@ -794,24 +794,6 @@ function cbi_init() {
cbi_d_update();
}
-function cbi_bind(obj, type, callback, mode) {
- if (!obj.addEventListener) {
- obj.attachEvent('on' + type,
- function(){
- var e = window.event;
-
- if (!e.target && e.srcElement)
- e.target = e.srcElement;
-
- return !!callback(e);
- }
- );
- } else {
- obj.addEventListener(type, callback, !!mode);
- }
- return obj;
-}
-
function cbi_combobox(id, values, def, man, focus) {
var selid = "cbi.combobox." + id;
if (document.getElementById(selid)) {
@@ -870,7 +852,7 @@ function cbi_combobox(id, values, def, man, focus) {
if (dt)
cbi_validate_field(sel, op == 'true', dt);
- cbi_bind(sel, "change", function() {
+ sel.addEventListener("change", function() {
if (sel.selectedIndex == sel.options.length - 1) {
obj.style.display = "inline";
sel.blur();
@@ -897,7 +879,7 @@ function cbi_combobox(id, values, def, man, focus) {
function cbi_combobox_init(id, values, def, man) {
var obj = (typeof(id) === 'string') ? document.getElementById(id) : id;
- cbi_bind(obj, "blur", function() {
+ obj.addEventListener("blur", function() {
cbi_combobox(obj.id, values, def, man, true);
});
cbi_combobox(obj.id, values, def, man, false);
@@ -927,7 +909,7 @@ function cbi_browser_init(id, resource, defpath)
btn.src = (resource || cbi_strings.path.resource) + '/cbi/folder.gif';
field.parentNode.insertBefore(btn, field.nextSibling);
- cbi_bind(btn, 'click', cbi_browser_btnclick);
+ btn.addEventListener('click', cbi_browser_btnclick);
}
function cbi_dynlist_init(parent, datatype, optional, choices)
@@ -995,15 +977,15 @@ function cbi_dynlist_init(parent, datatype, optional, choices)
cbi_combobox_init(t.id, choices, '', _('-- custom --'));
b.index = i;
- cbi_bind(b, 'keydown', cbi_dynlist_keydown);
- cbi_bind(b, 'keypress', cbi_dynlist_keypress);
+ b.addEventListener('keydown', cbi_dynlist_keydown);
+ b.addEventListener('keypress', cbi_dynlist_keypress);
if (i == focus || -i == focus)
b.focus();
}
else {
- cbi_bind(t, 'keydown', cbi_dynlist_keydown);
- cbi_bind(t, 'keypress', cbi_dynlist_keypress);
+ t.addEventListener('keydown', cbi_dynlist_keydown);
+ t.addEventListener('keypress', cbi_dynlist_keypress);
if (i == focus) {
t.focus();
@@ -1018,7 +1000,7 @@ function cbi_dynlist_init(parent, datatype, optional, choices)
}
}
- cbi_bind(b, 'click', cbi_dynlist_btnclick);
+ b.addEventListener('click', cbi_dynlist_btnclick);
}
}
@@ -1274,12 +1256,12 @@ function cbi_validate_field(cbid, optional, type)
field.form.cbi_validators.push(validatorFn);
- cbi_bind(field, "blur", validatorFn);
- cbi_bind(field, "keyup", validatorFn);
+ field.addEventListener("blur", validatorFn);
+ field.addEventListener("keyup", validatorFn);
if (matchesElem(field, 'select')) {
- cbi_bind(field, "change", validatorFn);
- cbi_bind(field, "click", validatorFn);
+ field.addEventListener("change", validatorFn);
+ field.addEventListener("click", validatorFn);
}
field.setAttribute("cbi_validate", validatorFn);