diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 00:10:45 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 08:06:23 -0400 |
commit | f43311da932d8ec16ad91c14afefc84cfb810797 (patch) | |
tree | 07151d6784fabc07e2973206c069c2063d8eee3d /ui | |
parent | 3b99bf4cc848ee5faf5f3f0d6483f2fa03e5f969 (diff) | |
download | jquery-ui-f43311da932d8ec16ad91c14afefc84cfb810797.tar.gz jquery-ui-f43311da932d8ec16ad91c14afefc84cfb810797.zip |
Droppable: Style updates
Ref #14246
Ref gh-1588
Diffstat (limited to 'ui')
-rw-r--r-- | ui/widgets/droppable.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/widgets/droppable.js b/ui/widgets/droppable.js index 3a8bd7109..6ba8d8c80 100644 --- a/ui/widgets/droppable.js +++ b/ui/widgets/droppable.js @@ -41,7 +41,7 @@ $.widget( "ui.droppable", { scope: "default", tolerance: "intersect", - // callbacks + // Callbacks activate: null, deactivate: null, drop: null, @@ -388,7 +388,7 @@ $.ui.ddmanager = { } } - // we just moved into a greedy child + // We just moved into a greedy child if ( parentInstance && c === "isover" ) { parentInstance.isover = false; parentInstance.isout = true; @@ -399,7 +399,7 @@ $.ui.ddmanager = { this[c === "isout" ? "isover" : "isout"] = false; this[c === "isover" ? "_over" : "_out"].call( this, event ); - // we just moved out of a greedy child + // We just moved out of a greedy child if ( parentInstance && c === "isout" ) { parentInstance.isout = false; parentInstance.isover = true; |