This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
goober-ionic/plugins/cordova-plugin-share-content
2018-07-15 19:24:48 -07:00
..
scripts add native android build sources 2018-07-15 19:24:48 -07:00
src add native android build sources 2018-07-15 19:24:48 -07:00
package.json add native android build sources 2018-07-15 19:24:48 -07:00
plugin.xml add native android build sources 2018-07-15 19:24:48 -07:00
README.rst add native android build sources 2018-07-15 19:24:48 -07:00

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);
    });