We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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);