2017-05-26 22:22:31 +02:00
|
|
|
//
|
|
|
|
// Browser.swift
|
|
|
|
// Evergren
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 2/23/16.
|
|
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import CoreServices
|
|
|
|
import RSWeb
|
|
|
|
|
|
|
|
|
|
|
|
func openInBrowser(_ urlString: String) {
|
|
|
|
|
|
|
|
// Opens according to prefs.
|
|
|
|
let openInBackground = UserDefaults.standard.bool(forKey: OpenInBrowserInBackgroundKey)
|
|
|
|
openInBrowser(urlString, inBackground: openInBackground)
|
|
|
|
}
|
|
|
|
|
|
|
|
func openInBrowser(_ urlString: String, inBackground: Bool) {
|
|
|
|
|
|
|
|
if let url = URL(string: urlString) {
|
2017-05-27 22:37:50 +02:00
|
|
|
MacWebBrowser.openURL(url, inBackground: inBackground)
|
2017-05-26 22:22:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|