Skip to content

Commit

Permalink
[-] FO : Fix bug #PSCFV-12189, color picker is not working with accen…
Browse files Browse the repository at this point in the history
…ted characters
  • Loading branch information
gRoussac committed Jul 8, 2014
1 parent c701f5f commit 0987d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/default-bootstrap/js/product.js
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ function checkUrl()
for (var z in tabValues)
for (var a in attributesCombinations)
if (attributesCombinations[a]['group'] === decodeURIComponent(tabValues[z][0])
&& attributesCombinations[a]['attribute'] === tabValues[z][1])
&& attributesCombinations[a]['attribute'] === decodeURIComponent(tabValues[z][1]))
{
count++;
// add class 'selected' to the selected color
Expand Down

0 comments on commit 0987d44

Please sign in to comment.