fix script error in html2canvas.Util.getCSS

This commit is contained in:
Obexer Christoph 2011-11-23 13:57:37 +01:00
parent 66d328d1e3
commit 62fa6038e7

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);
};