Daily updates from Odoo
Tuesday, December 31, 2024
1 change
Code cleanup and technical improvements
Automated website tours now wait a shorter time before checking whether a page element is ready. This should make related automated checks run a bit faster without changing customer-facing features.
Original PR description
In macro.js, we check at each mutation of the DOM if the trigger is
present as soon as there has been no more mutation in the {checkDelay}
milliseconds. By default, this {checkDelay} is at 300ms in the
tourAutomatic class. In this commit, this default value is descreased
to 200ms for performance reasons.