mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2024-11-27 08:20:47 +00:00
10 lines
172 B
Plaintext
10 lines
172 B
Plaintext
function onKeyEvent(key as string, press as boolean) as boolean
|
|
|
|
if key = "OK"
|
|
m.top.close = true
|
|
return true
|
|
end if
|
|
|
|
return false
|
|
end function
|