luci-base: form.js: fix default click action of button options
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
934fa275b2
commit
53ac685092
1 changed files with 1 additions and 1 deletions
|
@ -1822,7 +1822,7 @@ var CBIButtonValue = CBIValue.extend({
|
||||||
E('button', {
|
E('button', {
|
||||||
'class': 'cbi-button cbi-button-%s'.format(this.inputstyle || 'button'),
|
'class': 'cbi-button cbi-button-%s'.format(this.inputstyle || 'button'),
|
||||||
'click': L.ui.createHandlerFn(this, this.onclick || function(ev) {
|
'click': L.ui.createHandlerFn(this, this.onclick || function(ev) {
|
||||||
ev.target.previousElementSibling.value = ev.target.value;
|
ev.currentTarget.parentNode.nextElementSibling.value = value;
|
||||||
return this.map.save();
|
return this.map.save();
|
||||||
})
|
})
|
||||||
}, [ btn_title ])
|
}, [ btn_title ])
|
||||||
|
|
Loading…
Reference in a new issue