Skip to content

Commit

Permalink
feat(playstation): add queuing selector (#1173)
Browse files Browse the repository at this point in the history
  • Loading branch information
willwhitney committed Dec 11, 2020
1 parent 5786481 commit 67b19a7
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/store/model/playstation.ts
Expand Up @@ -3,10 +3,16 @@ import fetch from 'node-fetch';

export const PlayStation: Store = {
labels: {
inStock: {
container: '.productHero-info .add-to-cart:not(.hide)',
text: ['Add']
},
inStock: [
{
container: '.productHero-info .add-to-cart:not(.hide)',
text: ['Add']
},
{
container: '.bulleted-info.queue',
text: ['queue']
}
],
outOfStock: {
container: '.productHero-info .out-stock-wrpr:not(.hide)',
text: ['Out of Stock']
Expand Down

0 comments on commit 67b19a7

Please sign in to comment.