Skip to content

Instantly share code, notes, and snippets.

@oozoofrog
Created October 10, 2017 04:37
Show Gist options
  • Save oozoofrog/b13e26b1a9d9c60171223d5cdae347d2 to your computer and use it in GitHub Desktop.
Save oozoofrog/b13e26b1a9d9c60171223d5cdae347d2 to your computer and use it in GitHub Desktop.
extension WKNavigationType: CustomStringConvertible {
public var description: String {
switch self {
case .backForward: return "backForward"
case .formResubmitted: return "formResubmitted"
case .formSubmitted: return "formSubmitted"
case .linkActivated: return "linkActivated"
case .other: return "other"
case .reload: return "reload"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment