mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-10 12:54:15 +08:00
18 lines
380 B
Swift
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)
|
|
}
|
|
|
|
}
|