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 682ab10d0..9b8370e93 100644 --- a/template/yoga/rating.js +++ b/template/yoga/rating.js @@ -23,7 +23,7 @@ function makeNiceRatingForm(options) rateButton.initialRateValue = rateButton.value; // save it as a property try { rateButton.type = "button"; } catch (e){}// avoid normal submit (use ajax); not working in IE6 - if (navigator.userAgent.indexOf('AppleWebKit/') == -1 ) rateButton.value = ""; //hide the text IE/Opera - breaks safari + if (navigator.userAgent.indexOf('AppleWebKit/')==-1 && navigator.userAgent.indexOf('MSIE 8')==-1) rateButton.value = ""; //hide the text IE<8/Opera - breaks safari with (rateButton.style) { textIndent = "-50px"; //hide the text FF |