| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | /** |
||
| 8 | function findPriceSelector() |
||
| 9 | { |
||
| 10 | var priceDOM = document.getElementById("our_price_display"); |
||
| 11 | if (priceDOM != null) { |
||
|
|
|||
| 12 | return '#our_price_display'; |
||
| 13 | } else { |
||
| 14 | priceDOM = document.querySelector(".current-price span[itemprop=price]") |
||
| 15 | if (priceDOM != null) { |
||
| 16 | return ".current-price span[itemprop=price]"; |
||
| 17 | } |
||
| 18 | } |
||
| 19 | |||
| 20 | return 'default'; |
||
| 21 | } |
||
| 22 | |||
| 30 | } |