Comment 8 for bug 1286544

Revision history for this message
reggyjunk (regjunk06) wrote :

I'm working on it at this very moment.

I isolated the css3 transform vs ie filter css and that worked ok. Now I'm trying to make the css changes within the jQuery.fn.extend within the HtmlTemplateForGetResource with less success.

$(this).css(....
 "filter": "progid:DXImageTransform.Microsoft.Matrix(M11="+e.scaleFactor+", M12=0, M21=0, M22="+e.scaleFactor+", SizingMethod='auto expand')", "margin-left":(e.originalWidth/-6.05)+"px","margin-top":(e.originalHeight/-4)+"px", transform:"scale("+e.scaleFactor+")","transform-origin":"0 0"}

$("body").css(.....
"filter": "progid:DXImageTransform.Microsoft.Matrix(M11="+e.scaleFactor+", M12=0, M21=0, M22="+e.scaleFactor+", SizingMethod='auto expand')","margin-left":(e.originalWidth/-6.05)+"px","margin-top":(e.originalHeight/-4)+"px",

Any assistance would be awesome. could it be $(body).style.filter="progid:...etc"?