From 43bdb178600acae48f64bee737e6af48bd42c6bc Mon Sep 17 00:00:00 2001 From: Marco Hermo Date: Wed, 25 May 2016 09:49:05 +1200 Subject: [PATCH] Bugfix: Undefined variable timeout, changed to value --- src/af.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/af.ui.js b/src/af.ui.js index acb2d69c1..75a30a38d 100644 --- a/src/af.ui.js +++ b/src/af.ui.js @@ -619,7 +619,7 @@ */ showMask: function(text, value) { if (!text) text = this.loadingText || ""; - if (!value || typeof value !== "number") timeout = 15000; + if (!value || typeof value !== "number") value = 15000; $.query("#afui_mask>h1").html(text); $.query("#afui_mask").show(); this.showingMask = true;