More often, environments like WinJS, will not have a stable internet connection. In that case, the javascript errors, caught offline can be locally stored. Once you get the connection up, you can find the errors saved in the local storage.
Offline saving by default is disabled. You can enable it after the config() call.
Syntax
atatus.enableOffline(enable)
Parameter
Parameter | Type | Description |
---|---|---|
enable | Boolean (Required) | Enable/Disable offline. |
Example
copy
atatus.enableOffline(true)