From def1f08ff09f9f8f4af7e734ab01154d73b103fb Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Mon, 13 Jun 2016 13:01:08 -0400 Subject: [PATCH] Revert "SocialSharing: Add recommended `shareWithOptions` method" --- src/plugins/socialsharing.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/plugins/socialsharing.ts b/src/plugins/socialsharing.ts index f94d755474..d7e5a584be 100644 --- a/src/plugins/socialsharing.ts +++ b/src/plugins/socialsharing.ts @@ -33,15 +33,6 @@ export class SocialSharing { }) static share (message?: string, subject?: string, file?: string|Array, url?: string): void {} - /** - * Shares using the share sheet with additional options and returns a result object or an error message (requires plugin version 5.1.0+) - * @param options {object} The options object with the message, subject, files, url and chooserTitle properties. - */ - @Cordova({ - platforms: ['iOS', 'Android'] - }) - static shareWithOptions (options: { message?: string, subject?: string, file?: string|Array, url?: string, chooserTitle?: string }): Promise {return; } - /** * Checks if you can share via a specific app. * @param appName App name or package name. Examples: instagram or com.apple.social.facebook @@ -145,4 +136,4 @@ export class SocialSharing { static shareViaEmail(message: string, subject: string, to: Array, cc: Array, bcc: Array, files: string|Array): Promise {return; } -} +} \ No newline at end of file