diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-09-03 16:47:19 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-09-10 15:28:16 +0200 |
commit | 88969529f18a7de7ef9699c0b0dde82e820f1d7b (patch) | |
tree | c1cbde735c15c845f9e5ec80f9eb15c225306413 /modules/luci-base/htdocs/luci-static | |
parent | 14b6ea6ea750a6f3b7dd97376dd8e2cb0f3e9087 (diff) |
luci-base: luci.js: fix L.Poll.remove()
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/luci.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js index 582e37300..9d472dedc 100644 --- a/modules/luci-base/htdocs/luci-static/resources/luci.js +++ b/modules/luci-base/htdocs/luci-static/resources/luci.js @@ -491,7 +491,7 @@ return true; }, - remove: function(entry) { + remove: function(fn) { if (typeof(fn) != 'function') throw new TypeError('Invalid argument to LuCI.Poll.remove()'); |