Key Pressed Event(F11)
Hi All,
We want to enable and disable F11 key pressed event by clicking a button from Mashup.
We have deployed our mashup in a production monitor(kiosk) like the following image. 
Here we don't have the keyboard attached to it to enable/disable F11 for full-screen mode. So we are looking for enabling and disabling it via a button click.
Give us a solution for this.
The solution to enable FullScreen
($("#runtime")[0].webkitRequestFullScreen()?$("#runtime")[0].webkitRequestFullScreen():($("#runtime")[0].mozRequestFullScreen()?$("#runtime")[0].mozRequestFullScreen():$("#runtime")[0].msRequestFullscreen()?$("#runtime")[0].msRequestFullscreen():$("#runtime")[0].requestFullScreen()))
--by
looking for disabling the full screen.

