luci-mod-network: fix xhtml markup
* fix markup in interfaces.js (#4980)
Signed-off-by: Dirk Brenken <dev@brenken.org>
(Adapted from commit 2617fcdc63
by taking only the .js part.)
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
This commit is contained in:
parent
3a9ebc537f
commit
a307abc9d6
1 changed files with 2 additions and 2 deletions
|
@ -672,7 +672,7 @@ return view.extend({
|
|||
so.depends('ra', 'relay');
|
||||
|
||||
so = ss.taboption('ipv6', form.Value, 'ra_hoplimit', _('<abbr title="Router Advertisement">RA</abbr> Hop Limit'), _('The maximum hops \
|
||||
to be published in <abbr title="Router Advertisement">RA</abbr> messages.<br>Default is 0 (<code>0</code>), meaning unspecified.\
|
||||
to be published in <abbr title="Router Advertisement">RA</abbr> messages.<br />Default is 0 (<code>0</code>), meaning unspecified.\
|
||||
Max 255.'));
|
||||
so.optional = true;
|
||||
so.default = '0';
|
||||
|
@ -685,7 +685,7 @@ return view.extend({
|
|||
<li><strong>stateless</strong>: Router advertises prefixes, host uses <abbr title="Stateless Address Auto Config">SLAAC</abbr> \
|
||||
to self assign its own address. No DHCPv6.</li>\
|
||||
<li><strong>stateless + stateful</strong>: SLAAC. In addition, router assigns an IPv6 address to a host via DHCPv6.</li>\
|
||||
<li><strong>stateful-only</strong>: No SLAAC. Router assigns an IPv6 address to a host via DHCPv6.</li><ul>'));
|
||||
<li><strong>stateful-only</strong>: No SLAAC. Router assigns an IPv6 address to a host via DHCPv6.</li></ul>'));
|
||||
so.value('0', _('stateless'));
|
||||
so.value('1', _('stateless + stateful'));
|
||||
so.value('2', _('stateful-only'));
|
||||
|
|
Loading…
Reference in a new issue