Skip to content
Snippets Groups Projects
Commit b9324016 authored by Benjamin Vray's avatar Benjamin Vray
Browse files

[FIX] website: fix the scrolling of table of content in website slides


Steps to reproduce the bug:

- Install the Website Slides module.
- Got to the /slides page.
- Click on a course.
- Click on the "Add Content" button.
- Choose "Web Page" in the modal.
- Once in edit mode, drag and drop a "Table of Content" snippet onto the
page.
- Save the page.
- Scroll the page and observe that the navbar items are updated as you
scroll.
- Click on the "Fullscreen" button.
- Bug: When scrolling the page, the navbar items are no longer updated
as you scroll.

This commit fixes the issue by detecting the scrolling element by
traversing up the ancestors from the 'table of content' snippet, instead
of using the 'getScrollingElement' function, which always returned the
'#wrapwrap' when a Website Slides page is in fullscreen.

opw-3302118

closes odoo/odoo#124893

X-original-commit: 1ac274c3
Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
Signed-off-by: default avatarVray Benjamin (bvr) <bvr@odoo.com>
parent 74dceaf8
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ const TableOfContent = publicWidget.Widget.extend({
async start() {
this._stripNavbarStyles();
await this._super(...arguments);
this.$scrollingElement = $().getScrollingElement();
this.$scrollingElement = this.$target.closest(".s_table_of_content").closestScrollable();
this.previousPosition = -1;
this._updateTableOfContentNavbarPosition();
extraMenuUpdateCallbacks.push(this._updateTableOfContentNavbarPosition.bind(this));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment