-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setStyle('opacity',1) can't work properly #1469
Comments
at 236 line of "dom-style-ie.js" Error
Correct
|
Thank you for your report! I'll looking into this. |
@zxj I'm not able to reproduce this problem on IE6. Could you put reproducible example code? |
@okuryu thank you for your processing please run below example code on IE6 or IE7.
Please pay attention to "dom-style-ie.js" file, in line 236. |
@okuryu please run below example code.
Thanks |
@zxj Thanks! I could reproduce your problem. I'll work to fix the code and test case ASAP. |
This problem occurs when you try to set an opacity to 1 using node.setStyle() method on IE. It has adapted to change an opacity only if less than 1, but we should change an opacity, even if it passed 1. Fix yui#1469.
This problem occurs when you try to set an opacity to 1 using node.setStyle() method on IE. It has adapted to change an opacity only if less than 1, but we should change an opacity, even if it passed 1. Fix #1469.
This problem occurs when you try to set an opacity to 1 using node.setStyle() method on IE. It has adapted to change an opacity only if less than 1, but we should change an opacity, even if it passed 1. Fix #1469.
Landed 95c52dc. It will be available in near future release. |
In IE6 or IE7 ,if "filter:alpha(opacity=0)" defined in external css files or defined in interanl css block,then use setStyle('opacity',1) will not work properly.
The text was updated successfully, but these errors were encountered: