Implemented find on page UI

This commit is contained in:
James Magahern
2020-09-30 18:06:47 -07:00
parent 1d27674d7d
commit 3769f5bbbf
12 changed files with 372 additions and 9 deletions

View File

@@ -65,6 +65,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
title: "Next Tab",
action: #selector(ShortcutResponder.nextTab)
),
// Find on page
UIKeyCommand(
modifiers: [.command], input: "F",
title: "Find on Page",
action: #selector(ShortcutResponder.findOnPage)
),
]
}