21 lines
379 B
ReStructuredText
21 lines
379 B
ReStructuredText
|
Supported Platform
|
||
|
==================
|
||
|
|
||
|
iOS/Android
|
||
|
|
||
|
Installation
|
||
|
============
|
||
|
|
||
|
``cordova plugin add https://github.com/six519/cordova-plugin-share-content.git``
|
||
|
|
||
|
Usage
|
||
|
=====
|
||
|
::
|
||
|
|
||
|
//share text
|
||
|
window.shareContentPlugin.share('<TEXT_TO_SHARE>', function(e){
|
||
|
//success callback
|
||
|
}, function(e){
|
||
|
//error callback
|
||
|
alert('The error is: ' + e);
|
||
|
});
|