mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
fix script error in html2canvas.Util.getCSS
This commit is contained in:
parent
66d328d1e3
commit
62fa6038e7
@ -109,9 +109,9 @@ html2canvas.Util.getCSS = function (el, attribute) {
|
|||||||
if ( rsLeft ) {
|
if ( rsLeft ) {
|
||||||
el.runtimeStyle.left = rsLeft;
|
el.runtimeStyle.left = rsLeft;
|
||||||
}*/
|
}*/
|
||||||
val = $(el).css(attribute);
|
// val = $(el).css(attribute);
|
||||||
// }
|
// }
|
||||||
return val;
|
return $(el).css(attribute);
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user