From ec69a0cbac5b055fec2a435889d5d423c69dc7ce Mon Sep 17 00:00:00 2001 From: Niklas Merz Date: Sun, 15 Apr 2018 10:01:40 +0200 Subject: [PATCH] docs(inappbrowser): add new option hidespinner (#2460) --- src/@ionic-native/plugins/in-app-browser/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/@ionic-native/plugins/in-app-browser/index.ts b/src/@ionic-native/plugins/in-app-browser/index.ts index beb4d8600..749ee10d6 100644 --- a/src/@ionic-native/plugins/in-app-browser/index.ts +++ b/src/@ionic-native/plugins/in-app-browser/index.ts @@ -49,6 +49,8 @@ export interface InAppBrowserOptions { transitionstyle?: 'fliphorizontal' | 'crossdissolve' | 'coververtical'; /** (iOS Only) Set to top or bottom (default is bottom). Causes the toolbar to be at the top or bottom of the window. */ toolbarposition?: 'top' | 'bottom'; + /** (iOS Only) Set to yes or no to change the visibility of the loading indicator (defaults to no). */ + hidespinner?: 'yes' | 'no'; /** (Windows only) Set to yes to create the browser control without a border around it. * Please note that if location=no is also specified, there will be no control presented to user to close IAB window. */ fullscreen?: 'yes';