Skip to content

Commit

Permalink
feat(safari-view-controller): add missing options (#1490)
Browse files Browse the repository at this point in the history
* update(SafariViewController): added missing options

fix #1489

* alphabetical

* fix linter

* Update index.ts

* Update index.ts
  • Loading branch information
danielsogl authored and ihadeed committed May 9, 2017
1 parent 21c9cd2 commit a5b2e98
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/@ionic-native/plugins/safari-view-controller/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit a5b2e98

Please sign in to comment.