luci-mod-system: disable redundant page actions in crontab, startup views

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2019-09-18 07:23:01 +02:00
parent f878b21c8c
commit a67175cab1
2 changed files with 14 additions and 13 deletions

View file

@ -40,13 +40,10 @@ return L.view.extend({
E('p', {},
_('This is the system crontab in which scheduled tasks can be defined.') +
_('<br/>Note: you need to manually restart the cron service if the crontab file was empty before editing.')),
E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 10 }, crontab != null ? crontab : '')),
E('div', { 'class': 'right' }, [
E('button', {
'class': 'btn cbi-button-positive important',
'click': L.ui.createHandlerFn(this, 'handleSave')
}, _('Save'))
])
E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 10 }, crontab != null ? crontab : ''))
]);
}
},
handleSaveApply: null,
handleReset: null
});

View file

@ -55,7 +55,7 @@ return L.view.extend({
}, this, name, !isEnabled, ev.currentTarget.parentNode));
},
handleSave: function(ev) {
handleRcLocalSave: function(ev) {
var value = (document.querySelector('textarea').value || '').trim().replace(/\r\n/g, '\n') + '\n';
return this.callFileWrite('/etc/rc.local', value).then(function(rc) {
@ -126,10 +126,10 @@ return L.view.extend({
E('div', { 'data-tab': 'rc', 'data-tab-title': _('Local Startup') }, [
E('p', {}, _('This is the content of /etc/rc.local. Insert your own commands here (in front of \'exit 0\') to execute them at the end of the boot process.')),
E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 20 }, rcLocal != null ? rcLocal : '')),
E('div', { 'class': 'right' }, [
E('div', { 'class': 'cbi-page-actions' }, [
E('button', {
'class': 'btn cbi-button-positive important',
'click': L.ui.createHandlerFn(this, 'handleSave')
'class': 'btn cbi-button-save',
'click': L.ui.createHandlerFn(this, 'handleRcLocalSave')
}, _('Save'))
])
])
@ -139,5 +139,9 @@ return L.view.extend({
L.ui.tabs.initTabGroup(view.lastElementChild.childNodes);
return view;
}
},
handleSaveApply: null,
handleSave: null,
handleReset: null
});