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>
This commit is contained in:
Jo-Philipp Wich 2019-04-08 17:10:09 +02:00
parent 8d839ddfb8
commit 7423bd9aa3

View file

@ -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), nullL.run);
L.post(L.url('admin/network/iface_reconnect', id), null, L.run);
}
function iface_delete(ev) {