fix(store): update inStock and maxPrice for newegg, newegg-ca (#433)

Fixes #400

Co-authored-by: Josh Eckerman <josh.eckerman@gubagoo.com>
This commit is contained in:
Josh Eckerman
2020-10-03 11:26:59 -05:00
committed by GitHub
parent b4d8733d18
commit 628cab1b60
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -7,11 +7,11 @@ export const NeweggCa: Store = {
text: ['are you a human?']
},
inStock: {
container: '#landingpage-cart .btn-primary span',
container: 'div#ProductBuy .btn-primary',
text: ['add to cart']
},
maxPrice: {
container: '#landingpage-price > div > div > ul > li.price-current > strong',
container: 'div#app div.product-price > ul > li.price-current > strong',
euroFormat: false
}
},
+2 -2
View File
@@ -7,11 +7,11 @@ export const Newegg: Store = {
text: ['are you a human?']
},
inStock: {
container: '#landingpage-cart .btn-primary span',
container: 'div#ProductBuy .btn-primary',
text: ['add to cart']
},
maxPrice: {
container: '#landingpage-price > div > div > ul > li.price-current > strong',
container: 'div#app div.product-price > ul > li.price-current > strong',
euroFormat: false
}
},