mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-18 02:46:38 -05:00
16 lines
324 B
Swift
16 lines
324 B
Swift
import Foundation
|
|
|
|
enum WebViewJavascriptCommands {
|
|
static var searchEntitiesKeyEvent = """
|
|
var event = new KeyboardEvent('keydown', {
|
|
key: 'e',
|
|
code: 'KeyE',
|
|
keyCode: 69,
|
|
which: 69,
|
|
bubbles: true,
|
|
cancelable: true
|
|
});
|
|
document.dispatchEvent(event);
|
|
"""
|
|
}
|