diff options
Diffstat (limited to 'template/yoga/rating.js')
-rw-r--r-- | template/yoga/rating.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/yoga/rating.js b/template/yoga/rating.js index a4f8f86b8..736c235ca 100644 --- a/template/yoga/rating.js +++ b/template/yoga/rating.js @@ -21,7 +21,7 @@ function makeNiceRatingForm() var rateButton = gRatingButtons[i]; rateButton.initialRateValue = rateButton.value; // save it as a property - rateButton.value = ""; //hide the text IE/Opera + if (navigator.userAgent.indexOf('AppleWebKit/') == -1 ) rateButton.value = ""; //hide the text IE/Opera - breaks safari with (rateButton.style) { textIndent = "-50px"; //hide the text FF |