Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #312 - Added 4 to hsbottom and it seems to fix the issue of out o…
…f boundary hotspot... Not sure if it is a rounding error or what??
  • Loading branch information
JohnSmith-LT committed Jun 4, 2015
1 parent e1a73a2 commit e604d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/js/toolbox.js
Expand Up @@ -1819,7 +1819,7 @@ var EDITOR = (function ($, parent) {
left: hsleft + "px",
top: hstop + "px",
right: hsright + "px",
bottom: hsbottom + "px",
bottom: (hsbottom + 4) + "px",
background: "#ff0000",
opacity: "0.4"
};
Expand Down

0 comments on commit e604d2f

Please sign in to comment.