I have noticed that with Vimeo videos and some content full screen mode does not work very well. Is there a way to disable fullscreen mode in ODOO eLearning module?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
1
Reply
3868
Views
Found the Answer!
Edit the following block.
_updateHref: function () {
this.$(".o_wslides_js_slides_list_slide_link").each(function (){
var href = $(this).attr('href');
var operator = href.indexOf('?') !== -1 ? '&' : '?';
$(this).attr('href', href + operator + "fullscreen=1");
});
}
});
Change the "fullscreen=1" to "fullscreen=0" then when the link is generated it will not try to populate fullscreen but will also not disable fullscreen mode.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up