We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
At its simplest, you need to create an intent object for a given intent and then issue a startActivity call.
var intent = new Intent("http://webintents.org/share", "image/png", "data:image/png;base64,....."); window.navigator.startActivity(intent);
or if you want to start an activity to edit multiple objects you can use the following:
var intent = new Intent("http://webintents.org/share", "image/png", [ "data:image/png;base64,.....", "data:image/png;base64,.....", "data:image/png;base64,....." ]); window.navigator.startActivity(intent);