I saw the bug report for this ... do you have a test case? I can't reproduce
this one.

--
Brandon Aaron

On 7/2/07, weepy <[EMAIL PROTECTED]> wrote:


I also had a problem, this time only with IE6

line 1587 ==> return elem.filter ? (parseFloat( elem.filter.match(/
opacity=([^)]*)/)[1] ) / 100).toString() : "";

was causing an error as my filter didnt have "opacity=" string in it.

i fixed by changing to  :

==> return elem.filter ? (parseFloat( (elem.filter.match(/
opacity=([^)]*)/) || ["100"]) [1] ) / 1 00).toString() : "";


Reply via email to