This page is a first draft, which will be revised and improved. Please leave us a note on the community page regarding any issue.
appAPI Plugins
Crossrider developers can easily write and create plugins for the appAPI object, which can be used by every one in our community.
Some of our basic appAPI function started as a simple plugin, such as the appAPI.selectedText() for easy text selection and appAPI.shortcut() for textual keyboard shortcuts.
Go ahead and try to write your own.
Write Your Own Any developer can easily write a plugin for appAPI. Check out this "Hello World" appAPI plugin:
(function($) {
$.helloWorld = function() {
alert('hello world');
}
})(appAPI);
We are planing to open a plugin directory soon, for everybody to be able to @include cool and useful user generated appAPI plugins.