Skip to content

Commit

Permalink
mousedown/mouseup fix
Browse files Browse the repository at this point in the history
include min files
  • Loading branch information
GedMarc committed Apr 30, 2020
1 parent 376452e commit 90cbab5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demos/js/jquery.layout_and_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -2615,7 +2615,7 @@
.addClass(rClass + " " + rClass + _pane)
.on('hover',addHover, removeHover) // ALWAYS add hover-classes, even if resizing is not enabled - handle with CSS instead
.on('hover',onResizerEnter, onResizerLeave) // ALWAYS NEED resizer.mouseleave to balance toggler.mouseenter
.on('mouseup',$.layout.disableTextSelection) // prevent text-selection OUTSIDE resizer
.on('mousedown',$.layout.disableTextSelection) // prevent text-selection OUTSIDE resizer
.on('mouseup',$.layout.enableTextSelection) // not really necessary, but just in case
.appendTo($N) // append DIV to container
;
Expand Down
1 change: 1 addition & 0 deletions demos/js/jquery.layout_and_plugins.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.layout_and_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -2615,7 +2615,7 @@
.addClass(rClass + " " + rClass + _pane)
.on('hover',addHover, removeHover) // ALWAYS add hover-classes, even if resizing is not enabled - handle with CSS instead
.on('hover',onResizerEnter, onResizerLeave) // ALWAYS NEED resizer.mouseleave to balance toggler.mouseenter
.on('mouseup',$.layout.disableTextSelection) // prevent text-selection OUTSIDE resizer
.on('mousedown',$.layout.disableTextSelection) // prevent text-selection OUTSIDE resizer
.on('mouseup',$.layout.enableTextSelection) // not really necessary, but just in case
.appendTo($N) // append DIV to container
;
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.layout_and_plugins.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/stable/jquery.layout_and_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -2615,7 +2615,7 @@
.addClass(rClass + " " + rClass + _pane)
.on('hover',addHover, removeHover) // ALWAYS add hover-classes, even if resizing is not enabled - handle with CSS instead
.on('hover',onResizerEnter, onResizerLeave) // ALWAYS NEED resizer.mouseleave to balance toggler.mouseenter
.on('mouseup',$.layout.disableTextSelection) // prevent text-selection OUTSIDE resizer
.on('mousedown',$.layout.disableTextSelection) // prevent text-selection OUTSIDE resizer
.on('mouseup',$.layout.enableTextSelection) // not really necessary, but just in case
.appendTo($N) // append DIV to container
;
Expand Down
2 changes: 1 addition & 1 deletion source/stable/jquery.layout_and_plugins.min.js

Large diffs are not rendered by default.

0 comments on commit 90cbab5

Please sign in to comment.