|
@@ -172,6 +172,11 @@ class NCIntroViewController: UIViewController, UICollectionViewDataSource, UICol
|
|
|
}
|
|
|
|
|
|
@IBAction func host(_ sender: Any) {
|
|
|
+
|
|
|
+ guard let url = URL(string: NCBrandOptions.shared.linkLoginHost) else { return }
|
|
|
+ UIApplication.shared.open(url)
|
|
|
+
|
|
|
+ /*
|
|
|
let browserWebVC = UIStoryboard(name: "NCBrowserWeb", bundle: nil).instantiateInitialViewController() as? NCBrowserWeb
|
|
|
|
|
|
browserWebVC?.urlBase = NCBrandOptions.shared.linkLoginHost
|
|
@@ -179,6 +184,7 @@ class NCIntroViewController: UIViewController, UICollectionViewDataSource, UICol
|
|
|
if let browserWebVC = browserWebVC {
|
|
|
appDelegate.window?.rootViewController?.present(browserWebVC, animated: true)
|
|
|
}
|
|
|
+ */
|
|
|
}
|
|
|
}
|
|
|
extension UINavigationController {
|