From 13f241bab7acaedc6bd6726227e9f93a22195698 Mon Sep 17 00:00:00 2001 From: myfluxi Date: Wed, 3 Nov 2021 21:12:14 +0100 Subject: [PATCH] Update cart functionality Cart functionality is too important to be missed. "shopping-bag/basket/cart" frequently appears in various tags, so use it. --- src/technologies/c.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/technologies/c.json b/src/technologies/c.json index 5715d9375..c45d2c6b5 100644 --- a/src/technologies/c.json +++ b/src/technologies/c.json @@ -342,7 +342,19 @@ 6 ], "description": "Websites that have a shopping cart or checkout page, either using a known ecommerce platform or a custom solution.", - "dom": "a[href*='/cart'], a[href*='/order'], a[href*='/basket'], a[href*='/trolley'], a[href*='/bag'], a[href*='/shoppingbag'], a[href*='/checkout'], [aria-controls='cart']", + "dom": [ + "a[href*='/cart']", + "a[href*='/order']", + "a[href*='/basket']", + "a[href*='/trolley']", + "a[href*='/bag']", + "a[href*='/shoppingbag']", + "a[href*='/checkout']", + "[aria-controls='cart']", + "*[class*='shopping-bag']", + "*[class*='shopping-cart']", + "*[class*='checkout']" + ], "icon": "Cart-generic.svg", "js": { "google_tag_params.ecomm_pagetype": "" @@ -2658,4 +2670,4 @@ "oss": true, "website": "https://github.com/zloirock/core-js" } -} \ No newline at end of file +}