From a5b2e981b3d5a0c20f8fcda2eea72ca1f6faf8c9 Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Tue, 9 May 2017 23:32:24 +0200 Subject: [PATCH] feat(safari-view-controller): add missing options (#1490) * update(SafariViewController): added missing options fix #1489 * alphabetical * fix linter * Update index.ts * Update index.ts --- .../plugins/safari-view-controller/index.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/@ionic-native/plugins/safari-view-controller/index.ts b/src/@ionic-native/plugins/safari-view-controller/index.ts index 052ba53a5..cf1cc9ff9 100644 --- a/src/@ionic-native/plugins/safari-view-controller/index.ts +++ b/src/@ionic-native/plugins/safari-view-controller/index.ts @@ -2,14 +2,16 @@ import { Injectable } from '@angular/core'; import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core'; export interface SafariViewControllerOptions { - url?: string; - hidden?: boolean; - toolbarColor?: string; animated?: boolean; - showDefaultShareMenuItem?: boolean; + barColor?: string; + controlTintColor?: string; enterReaderModeIfAvailable?: boolean; + hidden?: boolean; + showDefaultShareMenuItem?: boolean; tintColor?: string; + toolbarColor?: string; transition?: string; + url?: string; } /**