intel / appframework

The definitive HTML5 mobile javascript framework
http://app-framework-software.intel.com/
MIT License
2.43k stars 881 forks source link

Variable mistyped in adding $.afui.showMask() timeout parameter #911

Open mithenks opened 8 years ago

mithenks commented 8 years ago

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;