0
0
mirror of https://github.com/openwrt/luci.git synced 2025-04-22 17:16:01 +00:00
Files
Sergey Ponomarev 22d48305af treewide: replace "var m, s, o" with "let m, s, o"
Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2024-12-03 16:25:21 +01:00

31 lines
687 B
JavaScript

'use strict';
'require view';
'require form';
'require ui';
'require uci';
return view.extend({
load: function () {
return Promise.all([uci.load('luci_olsr')]);
},
render: function () {
let m, s, o;
m = new form.Map('luci_olsr', _('OLSR - Display Options'));
s = m.section(form.TypedSection, 'olsr');
s.anonymous = true;
var res = s.option(
form.Flag,
'resolve',
_('Resolve'),
_('Resolve hostnames on status pages. It is generally safe to allow this, but if you use public IPs and have unstable DNS-Setup then those pages will load really slow. In this case disable it here.')
);
res.default = '0';
res.optional = true;
return m.render();
},
});