mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
Merge branch 'patch-2' of github.com:brcontainer/html2canvas into brcontainer-patch-2
This commit is contained in:
commit
e228fc57ce
@ -250,6 +250,13 @@ _html2canvas.Util.getCSS = function (element, attribute, index) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var value = computedCSS[attribute];
|
var value = computedCSS[attribute];
|
||||||
|
if(attribute==="backgroundRepeat" && value.indexOf(" ")!==-1){
|
||||||
|
value = (
|
||||||
|
"no-repeat repeat"===value ? "repeat-y" : (
|
||||||
|
"repeat no-repeat"===value ? "repeat-x" : value
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (/^background(Size|Position)$/.test(attribute)) {
|
if (/^background(Size|Position)$/.test(attribute)) {
|
||||||
return parseBackgroundSizePosition(value, element, attribute, index);
|
return parseBackgroundSizePosition(value, element, attribute, index);
|
||||||
|
Loading…
Reference in New Issue
Block a user