mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
16 lines
352 B
Swift
16 lines
352 B
Swift
import UIKit
|
|
import Capacitor
|
|
|
|
class AFFiNEViewController: CAPBridgeViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
webView?.allowsBackForwardNavigationGestures = true
|
|
}
|
|
|
|
override func capacitorDidLoad() {
|
|
bridge?.registerPluginInstance(CookiePlugin())
|
|
bridge?.registerPluginInstance(HashcashPlugin())
|
|
}
|
|
}
|