Commit 37cd3d66268d92cae48599a4a005df8b4e5920e5
1 parent
faf1542f8e
Exists in
master
and in
1 other branch
fix lazy border width.
Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff
app/index.html
app/scripts/controllers/tshirtdesign.js
... | ... | @@ -213,7 +213,7 @@ |
213 | 213 | function onIllustrationMoving(options) { |
214 | 214 | var object = options.target; |
215 | 215 | var pointer = canvas.getPointer(options.e); |
216 | - if (pointer.x >= 567 && pointer.y >= 620 && pointer.x <= 600 && pointer.y <= 670){ | |
216 | + if (pointer.x >= 567 && pointer.y >= 545 && pointer.x <= 600 && pointer.y <= 600){ | |
217 | 217 | $('.design-content .trash-design img').attr({'src':'images/trash-hover.png'}); |
218 | 218 | }else{ |
219 | 219 | $('.design-content .trash-design img').attr({'src':'images/trash.png'}); |