Skip to content

Commit

Permalink
fix(store): update inStock and maxPrice for newegg, newegg-ca (#433)
Browse files Browse the repository at this point in the history
Fixes #400

Co-authored-by: Josh Eckerman <josh.eckerman@gubagoo.com>
  • Loading branch information
jeckerman and guba-jeckerman committed Oct 3, 2020
1 parent b4d8733 commit 628cab1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/store/model/newegg-ca.ts
Expand Up @@ -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
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/store/model/newegg.ts
Expand Up @@ -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
}
},
Expand Down

0 comments on commit 628cab1

Please sign in to comment.