From bdfceb8ed274cd343d273c0a7f9bbb513617a0b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Souk=C3=A9ina=20Bojabza?= <sobo@odoo.com> Date: Tue, 25 Apr 2023 15:18:41 +0000 Subject: [PATCH] [FIX] website_sale: remove cart popover on language selectors in header Since commit [1], when we are in the `/shop/cart` page and if a language selector is in the header, a cart popover also appears when hovering the languages. This happens because the `websiteSaleCartLink` widget selector also targets the cart links inside the language buttons. This commit solves this issue by excluding the language selectors from this widget selector. [1]: https://github.com/odoo/odoo/commit/ecefa679b224ce0e4a5a7e91ce28936321132d9c opw-3288727 closes odoo/odoo#119685 Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com> --- addons/website_sale/static/src/js/website_sale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/website_sale/static/src/js/website_sale.js b/addons/website_sale/static/src/js/website_sale.js index fa96392c5b7c..8f39e07fa95b 100644 --- a/addons/website_sale/static/src/js/website_sale.js +++ b/addons/website_sale/static/src/js/website_sale.js @@ -9,7 +9,7 @@ var timeout; publicWidget.registry.websiteSaleCartLink = publicWidget.Widget.extend({ // TODO in master: remove the second selector. - selector: '#top a[href$="/shop/cart"], #top_menu a[href$="/shop/cart"]', + selector: '#top a[href$="/shop/cart"]:not(.js_change_lang), #top_menu a[href$="/shop/cart"]:not(.js_change_lang)', events: { 'mouseenter': '_onMouseEnter', 'mouseleave': '_onMouseLeave', -- GitLab