Maintainer: Michiel de Jong mic@unhost ed.org Version: - 0.1.0 hiel
Apps | Maintainer: Michiel de Jong mic@unhost ed.org Version: - 0.1.0 hiel |
Functions | |
remoteStorage. | Add an app to the user’s list of installed apps. |
remoteStorage. | Remove an app to the user’s list of installed apps. |
remoteStorage. | Set the change event handler. |
Schemas | |
apps/ | Info necessary for displaying a link to an app in an app store |
Functions | |
remoteStorage. | Get a dictionary of apps whihch the user has installed. |
remoteStorage. | Get a dictionary of apps whihch the user does not have installed, but which are available to install. |
Set the change event handler. This will be called, with the dictionary of installed apps as the only argument, whenever the list of installed apps changes. Example:
remoteStorage.apps.onChange(function(apps) { myAppsView.reset(); for (var i in apps) { myAppsView.add(apps[i]); } myAppsView.render(); });
handler | a Function that takes a dictionary of apps as its only argument |