Try to add this code into the custom js tab. It will replace the fullscreen button to the right bottom corner.
const instance = this;
const $ = jQuery;
const $fullscreen = instance.$container.find('.ipnrm-btn.ipnrm-fullscreen');
const $widget = instance.$container.find('.ipnrm-widget');
$fullscreen.detach().css({'display':'block','position':'absolute','right':'5px','bottom':0,'z-index':999});
$widget.append($fullscreen);
-
This reply was modified 3 months, 3 weeks ago by
Avirtum.
-
This reply was modified 3 months, 3 weeks ago by
Avirtum.
Ah thank you Avirtum.
That works indeed.
Is it possible to show that button next to the “eye” button bottom center?
If not, this is already great 👍
It’s possible too, try to use this code
const instance = this;
const $ = jQuery;
const $fullscreen = instance.$container.find('.ipnrm-btn.ipnrm-fullscreen');
const $menu = instance.$container.find('.ipnrm-menu-bar');
$fullscreen.detach().css({'display':'block'});
$menu.append($fullscreen);
Perfect !! 🙂
By the way, is it normal that if you look straight up or straight down and the rotation starts again that the screen starts flipping then?
That stops when you swipe just a little bit away from straight up or straight down.
Not sure if that’s only my iPad Pro or if this is unavoidable or maybe a bug of some kind.
Thought I mentioned this to you 👍
-
This reply was modified 3 months, 3 weeks ago by
Bommeltje.