Many times you would have seen a loading indicator in status bar while using a app. This indicator is used to convey to user about something been downloaded by the app or app is loaded some library.
Intel XDK developers can display this indicator by just one line of code
//this function displays a indicator. Must be executed inside a event handler.
intel.xdk.notification.showBusyIndicator();
},false);
You can close this indicator anytime using
Make sure you have included the Intel XDK Notification plugin with your app.