diff --git a/src/store/model/newegg-ca.ts b/src/store/model/newegg-ca.ts index 5f67a4ffe4..90f711b833 100644 --- a/src/store/model/newegg-ca.ts +++ b/src/store/model/newegg-ca.ts @@ -16,7 +16,17 @@ export const NeweggCa: Store = { container: 'div#app div.product-price > ul > li.price-current > strong', euroFormat: false - } + }, + outOfStock: [ + { + container: '.product-inventory', + text: [' out of stock.'] + }, + { + container: '.product-flag', + text: ['out of stock '] + } + ] }, links: [ { diff --git a/src/store/model/newegg-sg.ts b/src/store/model/newegg-sg.ts index fdba2a50eb..1b4946a376 100644 --- a/src/store/model/newegg-sg.ts +++ b/src/store/model/newegg-sg.ts @@ -20,7 +20,17 @@ export const NeweggSg: Store = { ], maxPrice: { container: '.price-current' - } + }, + outOfStock: [ + { + container: '.product-inventory', + text: [' out of stock.'] + }, + { + container: '.product-flag', + text: ['out of stock '] + } + ] }, links: [ { diff --git a/src/store/model/newegg.ts b/src/store/model/newegg.ts index c2fe1c496a..4e8964b62b 100644 --- a/src/store/model/newegg.ts +++ b/src/store/model/newegg.ts @@ -20,7 +20,17 @@ export const Newegg: Store = { ], maxPrice: { container: '.price-current' - } + }, + outOfStock: [ + { + container: '.product-inventory', + text: [' out of stock.'] + }, + { + container: '.product-flag', + text: ['out of stock '] + } + ] }, links: [ {