Removing some unnecessary extend calls

This commit is contained in:
Jeff Avallone 2014-12-23 23:27:09 -05:00
parent 6793b342ae
commit 000809752e
2 changed files with 4 additions and 4 deletions

View File

@ -9,11 +9,11 @@ export default {
var anchor = this.content.anchor,
matrix = this.transform().localMatrix;
return _.extend(anchor, {
return {
ax: matrix.x(anchor.ax, anchor.ay),
ax2: matrix.x(anchor.ax2, anchor.ay),
ay: matrix.y(anchor.ax, anchor.ay)
});
};
}
}
},

View File

@ -9,11 +9,11 @@ export default {
var anchor = this.regexp.anchor,
matrix = this.transform().localMatrix;
return _.extend(anchor, {
return {
ax: matrix.x(anchor.ax, anchor.ay),
ax2: matrix.x(anchor.ax2, anchor.ay),
ay: matrix.y(anchor.ax, anchor.ay)
});
};
}
}
},