fix script error in html2canvas.Util.getCSS

This commit is contained in:
MoyuScript 2011-11-23 13:57:37 +01:00
parent d64f62b9b7
commit f30796b4a3

View File

@ -109,9 +109,9 @@ html2canvas.Util.getCSS = function (el, attribute) {
if ( rsLeft ) {
el.runtimeStyle.left = rsLeft;
}*/
val = $(el).css(attribute);
// val = $(el).css(attribute);
// }
return val;
return $(el).css(attribute);
};