summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/luci.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js
index ca0e80a82a..f462c46813 100644
--- a/modules/luci-base/htdocs/luci-static/resources/luci.js
+++ b/modules/luci-base/htdocs/luci-static/resources/luci.js
@@ -925,7 +925,7 @@
* @hideconstructor
* @classdesc
*
- * The `Request.poll` class provides some convince wrappers around
+ * The `Request.poll` class provides some convenience wrappers around
* {@link LuCI.poll} mainly to simplify registering repeating HTTP
* request calls as polling functions.
*/
@@ -980,7 +980,7 @@
opts = Object.assign({}, options, { timeout: ival * 1000 - 5 });
var fn = function() {
- return Request.request(url, options).then(function(res) {
+ return Request.request(url, opts).then(function(res) {
if (!Poll.active())
return;