Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a-jie committed Mar 20, 2015
1 parent eb3825a commit a08dc80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/agile.js
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@
realWidth: null,
realHeight: null,
backface: true,
maxChildrenDepth: 0,
maxChildrenDepth: 0
};
this.numChildren = 0;
this.childrens = [];
Expand Down Expand Up @@ -1509,7 +1509,7 @@
this.originalHeight = height;
this.css({
'borderTopWidth' : '0px',
'borderBottomWidth' : height + 'px',
'borderBottomWidth' : height + 'px'
}, 3);
} else {
this.scaleY = this.height / this.originalHeight;
Expand Down
2 changes: 1 addition & 1 deletion src/display/DisplayObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
realWidth: null,
realHeight: null,
backface: true,
maxChildrenDepth: 0,
maxChildrenDepth: 0
};
this.numChildren = 0;
this.childrens = [];
Expand Down
2 changes: 1 addition & 1 deletion src/display/Triangle.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
this.originalHeight = height;
this.css({
'borderTopWidth' : '0px',
'borderBottomWidth' : height + 'px',
'borderBottomWidth' : height + 'px'
}, 3);
} else {
this.scaleY = this.height / this.originalHeight;
Expand Down

0 comments on commit a08dc80

Please sign in to comment.