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() { contentPosition() {
var x = 0, y = 0; var x = 0, y = 0;
if (this.hasSkip()) { if (this.hasLoop()) {
y = 10; x = 10;
} }
if (this.hasSkip() || this.hasLoop()) { if (this.hasSkip()) {
y = 10;
x = 15; x = 15;
} }