Files
GitHawk/Classes/View Controllers/UIViewController+IssueCommentHtmlCellNavigationDelegate.swift
2017-07-05 21:13:04 -04:00

18 lines
380 B
Swift

//
// UIViewController+IssueCommentHtmlCellNavigationDelegate.swift
// Freetime
//
// Created by Ryan Nystrom on 7/5/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import UIKit
extension UIViewController: IssueCommentHtmlCellNavigationDelegate {
func webViewWantsNavigate(cell: IssueCommentHtmlCell, url: URL) {
presentSafari(url: url)
}
}