mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 08:28:02 -05:00
24 lines
437 B
JavaScript
24 lines
437 B
JavaScript
/**
|
|
*
|
|
* Phonegap share plugin for Android
|
|
* Kevin Schaul 2011
|
|
*
|
|
*/
|
|
|
|
var Share = function() {};
|
|
|
|
Share.prototype.show = function(content, success, fail) {
|
|
return cordova.exec( function(args) {
|
|
success(args);
|
|
}, function(args) {
|
|
fail(args);
|
|
}, 'Share', '', [content]);
|
|
};
|
|
|
|
if(!window.plugins) {
|
|
window.plugins = {};
|
|
}
|
|
if (!window.plugins.share) {
|
|
window.plugins.share = new Share();
|
|
}
|