Merge pull request #5923 from TDT-AG/pr/20220803-luci-mod-system
luci-mod-system: add config option to invert heartbeat trigger
This commit is contained in:
commit
1a3a1c6522
1 changed files with 10 additions and 1 deletions
|
@ -1,10 +1,19 @@
|
|||
'use strict';
|
||||
'require baseclass';
|
||||
'require form';
|
||||
|
||||
return baseclass.extend({
|
||||
trigger: _('Heartbeat interval (kernel: heartbeat)'),
|
||||
description: _('The LED flashes to simulate actual heart beat.') +
|
||||
_('The frequency is in direct proportion to 1-minute average CPU load.'),
|
||||
kernel: true,
|
||||
addFormOptions: function(s) {}
|
||||
addFormOptions: function(s) {
|
||||
var o;
|
||||
|
||||
o = s.option(form.Flag, 'inverted', _('Invert blinking'),
|
||||
_('When inverted, the LED is continuously lit and flickers instead of it being off by default and blinking on system activity.'));
|
||||
o.rmempty = true;
|
||||
o.modalonly = true;
|
||||
o.depends('trigger', 'heartbeat');
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue