Fullscreen action

WebSupport

Active member
Hi,

I think we're already communicating with you via email :)
Please remove this line as it doesn't make sense in your current setup I think:

Code:
 _imageRotator.fullScreenOnClick = true;

Please confirm when this is done.
 

ciancastillo

New member
Removed:
Code:
_imageRotator.fullScreenOnClick = true;

My only issue now is when I clicked on fullscreen and closed it, wr360PlayerId_fs is still displaying rather than display="none"
 

WebSupport

Active member
What browser are you using for your testing as the full-screen function doesn't work at all in Chrome due to the fancybox exception in /plugins/fancybox-master/dist/jquery.fancybox.js ?
 

ciancastillo

New member
Chrome.
The full-screen is working, select the orange variation (not updating the default at the moment) and view it in full-screen.
 

WebSupport

Active member
Hi! I think there're two options to resolve the full-screen issue if you have to use fancybox:

1. Go to your fancybox script in the following link and disable this line around line 4480 (comment out with // in front of the line):

Code:
/skin/frontend/suz../default/plugins/fancybox-master/dist/jquery.fancybox.js
Code:
instance.trigger('onFullscreenChange', FullScreen.isFullscreen() );

2. Change viewer snippet to use full browser window for the full-screen function (instead of the usual full monitor screen). To do this, add this line before runImageRotator:

Code:
 _imageRotator.settings.inBrowserFullScreen = true;

Please see what works best.
 
Top