Missing properties added for openURL
This commit is contained in:
parent
74f77eca35
commit
f86c6fd5d2
@ -16,8 +16,16 @@ import Foundation
|
|||||||
public var analyticsData: JSONValueDictionary?
|
public var analyticsData: JSONValueDictionary?
|
||||||
// Temporary fix till server changes
|
// Temporary fix till server changes
|
||||||
public var title: String?
|
public var title: String?
|
||||||
|
|
||||||
|
//Missing params
|
||||||
|
public var openOauthWebView: Bool?
|
||||||
|
public var showNativeNavigation: Bool?
|
||||||
|
public var openInWebview: Bool?
|
||||||
|
|
||||||
public init(browserUrl: String) {
|
public init(browserUrl: String, openOauthWebView: Bool?, showNativeNavigation: Bool?, openInWebview: Bool?) {
|
||||||
self.browserUrl = browserUrl
|
self.browserUrl = browserUrl
|
||||||
|
self.openOauthWebView = openOauthWebView ?? false
|
||||||
|
self.showNativeNavigation = showNativeNavigation ?? false
|
||||||
|
self.openInWebview = openInWebview ?? false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user