diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-02-26 09:43:39 +0800 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-04-08 08:21:30 +0200 |
commit | 5624b36fa7a5fe172ffd604ad81ce7f9f03a0d9d (patch) | |
tree | 87e6c7fb82d623272c89904dea530895247305f7 /modules | |
parent | f8166387bf597256d9a259a4d0f24953292e50da (diff) |
luci-mod-network: fix page refresh after interface reconnect
Submitted-by: "taeasy" <88336@live.com>
[reword commit subject]
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.js | 2 |
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 40624e741..40103970f 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), L.run); + L.post(L.url('admin/network/iface_reconnect', id), null,L.run); } function iface_delete(ev) { |