Re: [fullscreen-api] Allowing AJAX requests when in fullscreen mode

Thanks - I have fixed that. Now it works under Opera and it works there as
expected, ie. it doesn't break fullscreen when changing history state.



2013/1/24 Mike Taylor <miket@opera.com>

> Hi Adam,
>
>
> On 1/24/13 3:58 AM, Adam Sobaniec wrote:
>
>> I have already filed a ticket at Chromium project (Issue 171670) with the
>> following link presenting problem:
>> http://adam.sobaniec.com/**Sandbox/Fullscreen<http://adam.sobaniec.com/Sandbox/Fullscreen>
>>
>
> Your test page has a bug in it:
>
> function launchFullScreen(element) {
>   if(element.requestFullScreen) {
>     element.requestFullScreen();
>   } else if(element.**mozRequestFullScreen) {
>     element.mozRequestFullScreen()**;
>   } else if(element.**webkitRequestFullScreen) {
>     element.**webkitRequestFullScreen();
>   }
> }
>
> requestFullScreen should be requestFullscreen. You can test in Opera which
> implements the prefixless version.
>
> Cheers,
>
> --
> Mike Taylor
> Opera Software
>

Received on Thursday, 24 January 2013 15:41:47 UTC