bugfix. document dimension of illustrator were calculated wrong if only vbox is present
This commit is contained in:
parent
3bca10d7da
commit
d3e50b43a1
1 changed files with 1 additions and 1 deletions
|
|
@ -276,7 +276,7 @@ $(function(){
|
|||
if(doc_viewbox !== null ){
|
||||
var parts = doc_viewbox.split(' ');
|
||||
if(parts.length === 4){
|
||||
doc_width = parts[3];
|
||||
doc_width = parts[2];
|
||||
}
|
||||
}
|
||||
if(doc_width === "100%"){
|
||||
|
|
|
|||
Loading…
Reference in a new issue