Skip to content

Commit 0aea75b

Browse files
Merge pull request prototypejs#107 from superdav42/master
Add a space when we apply the `alpha` filter in old versions of IE so that we don't disrupt existing filters.
2 parents 72ff0df + b840174 commit 0aea75b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prototype/dom/dom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2999,7 +2999,7 @@
29992999
if (value < 0.00001) value = 0;
30003000

30013001
style.filter = stripAlphaFromFilter_IE(filter) +
3002-
'alpha(opacity=' + (value * 100) + ')';
3002+
' alpha(opacity=' + (value * 100) + ')';
30033003

30043004
return element;
30053005
}

0 commit comments

Comments
 (0)