luci-app-transmission: fix ' ' exception in OpenWrt theme
Convert ' ' to ' ' which is both syntactically correct (semicolon present) and XHTML compliant.
Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
(cherry picked from commit afd096edfc
)
This commit is contained in:
parent
9a135ae4b3
commit
a953870b3b
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ return view.extend({
|
|||
|
||||
var button = '';
|
||||
if (running && webinstalled)
|
||||
button = ' <a class="btn" href="http://' + window.location.hostname + ':' + port + '" target="_blank" rel="noreferrer noopener">' + _('Open Web Interface') + '</a>';
|
||||
button = ' <a class="btn" href="http://' + window.location.hostname + ':' + port + '" target="_blank" rel="noreferrer noopener">' + _('Open Web Interface') + '</a>';
|
||||
|
||||
var m, s, o;
|
||||
|
||||
|
|
Loading…
Reference in a new issue