Adjusting positioning of loop and skip lines

This commit is contained in:
Jeff Avallone 2014-12-10 17:14:14 -05:00
parent b13ee3add2
commit 6dcc5f48c4
1 changed files with 4 additions and 3 deletions

View File

@ -22,11 +22,12 @@ export default {
contentPosition() {
var x = 0, y = 0;
if (this.hasSkip()) {
y = 10;
if (this.hasLoop()) {
x = 10;
}
if (this.hasSkip() || this.hasLoop()) {
if (this.hasSkip()) {
y = 10;
x = 15;
}