How to play video at 70px height without having JWPlayer thinking it's an audio-player?
When calling resize(124, 70); the video player will set itself to audioMode, which seems to mean that on("displayClick") events are no longer fired. Is there any way around this?
It seems rather peculiar the the audio-mode check doesn't check if getControls() returns true before applying this flag.
You can see the code here:
https://github.com/jwplayer/jwplayer/blob/8b9057239b0588e3471d5454fcde6ca489349151/src/js/view/view.js#L718
Is the bug that displayClick isn't fired when jw-flag-audio-player is on the video-player? Or is it that the height calculation doesn't check to see if controls are present? Or maybe both...