luci-base: form.js: add modal dialog hook
Add a new `addModalOptions()` hook which allows to supply additional cbi options the modal map before the dialog is rendered. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
5e67b8b72b
commit
eb9051c307
1 changed files with 5 additions and 1 deletions
|
@ -1067,6 +1067,10 @@ var CBITableSection = CBITypedSection.extend({
|
||||||
.catch(function() {});
|
.catch(function() {});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
addModalOptions: function(modalSection, section_id, ev) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
renderMoreOptionsModal: function(section_id, ev) {
|
renderMoreOptionsModal: function(section_id, ev) {
|
||||||
var parent = this.map,
|
var parent = this.map,
|
||||||
title = parent.title,
|
title = parent.title,
|
||||||
|
@ -1111,7 +1115,7 @@ var CBITableSection = CBITypedSection.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
//ev.target.classList.add('spinning');
|
//ev.target.classList.add('spinning');
|
||||||
m.render().then(L.bind(function(nodes) {
|
Promise.resolve(this.addModalOptions(s, section_id, ev)).then(L.bind(m.render, m)).then(L.bind(function(nodes) {
|
||||||
//ev.target.classList.remove('spinning');
|
//ev.target.classList.remove('spinning');
|
||||||
L.ui.showModal(title, [
|
L.ui.showModal(title, [
|
||||||
nodes,
|
nodes,
|
||||||
|
|
Loading…
Reference in a new issue