summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-04-08 17:10:09 +0200
committerJo-Philipp Wich <jo@mein.io>2019-04-08 17:10:09 +0200
commit7423bd9aa3544ca2c837b9e66b9d3dc5bbfafe70 (patch)
treecb554e8262f9d75b8a6b27807f43cf8c9a9c463a /modules
parent8d839ddfb8f169c01e516e1a5b0c2e8de6948183 (diff)
luci-mod-network: fix bad unicode comma in network.js
Fixes: 5624b36fa ("luci-mod-network: fix page refresh after interface reconnect") Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js
index 40103970f..fe1ff19fe 100644
--- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js
+++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js
@@ -1,7 +1,7 @@
function iface_reconnect(id) {
L.halt();
L.dom.content(document.getElementById(id + '-ifc-description'), E('em', _('Interface is reconnecting...')));
- L.post(L.url('admin/network/iface_reconnect', id), null,L.run);
+ L.post(L.url('admin/network/iface_reconnect', id), null, L.run);
}
function iface_delete(ev) {