You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.
When I try to show a loading mask with $.afui.showMask('Fetching data...');
I'm getting the following error: Uncaught ReferenceError: timeout is not defined
This is due to a mistyped variable name. Line 622 of /master/src/af.ui.js if (!value || typeof value !== "number") timeout = 15000;
must be if (!value || typeof value !== "number") value = 15000;
The text was updated successfully, but these errors were encountered:
When I try to show a loading mask with
$.afui.showMask('Fetching data...');
I'm getting the following error:
Uncaught ReferenceError: timeout is not defined
This is due to a mistyped variable name. Line 622 of /master/src/af.ui.js
if (!value || typeof value !== "number") timeout = 15000;
must be
if (!value || typeof value !== "number") value = 15000;
The text was updated successfully, but these errors were encountered: