Apply the workaround for the Firefox "blinking element" opacity=1 bug only to Firefox 1.5.
This commit is contained in:
parent
bb66a5eb9b
commit
916cbbaf4c
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Apply the workaround for the Firefox "blinking element" opacity=1 bug only to Firefox 1.5. [Thomas Fuchs]
|
||||
|
||||
* Add event.stopped, a boolean that is set to `true` when Event#stop is called. [Andrew Dupont, sam]
|
||||
|
||||
* Reset the browser's dimensions to their original settings after running the DOM viewport tests. [sam]
|
||||
|
|
|
@ -847,7 +847,7 @@ else if (Prototype.Browser.IE) {
|
|||
})(Element._attributeTranslations.read.values);
|
||||
}
|
||||
|
||||
else if (Prototype.Browser.Gecko) {
|
||||
else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) {
|
||||
Element.Methods.setOpacity = function(element, value) {
|
||||
element = $(element);
|
||||
element.style.opacity = (value == 1) ? 0.999999 :
|
||||
|
|
Loading…
Reference in New Issue