
trying to disable fullscreen for ie 9 and 10
I have successfully removed the fullscreen button from the player for ie9 and ie10
However the API puts a double click handler on the video that opens in fullscreen. I found a post that explains setting the controls to false will prevent that but it does not show how to code that. I have changed my code to add this:
self.setup({
file: videoUrl,
image: firstImg,
primary: window.mediaPath + "html5",
skin: jwPlayerFolder + "nofullscr.xml",
height: 330,
width: 330,
"controls": { "enabled": false },
plugins: plugins
...
But it is not working at all does not seem to be doing anything. How do I disable JUST the fullscreen control double click on the video?