diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-12-14 11:13:46 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-12-14 11:13:50 -0500 |
commit | 8ec7a1b69ffd86edbef06e30ca4368600531e649 (patch) | |
tree | f1141afd8ad47e88261338907aadb35a0f1b9f18 /ui/jquery.ui.droppable.js | |
parent | 80e46c93a84c8720cbd4aa206c46e4ac2a2d84f7 (diff) | |
download | jquery-ui-8ec7a1b69ffd86edbef06e30ca4368600531e649.tar.gz jquery-ui-8ec7a1b69ffd86edbef06e30ca4368600531e649.zip |
All: Use .addBack() instead of .andSelf().
Diffstat (limited to 'ui/jquery.ui.droppable.js')
-rw-r--r-- | ui/jquery.ui.droppable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.droppable.js b/ui/jquery.ui.droppable.js index e2da0b9f6..a6959fd0f 100644 --- a/ui/jquery.ui.droppable.js +++ b/ui/jquery.ui.droppable.js @@ -235,7 +235,7 @@ $.ui.ddmanager = { var i, j, m = $.ui.ddmanager.droppables[t.options.scope] || [], type = event ? event.type : null, // workaround for #2317 - list = (t.currentItem || t.element).find(":data(ui-droppable)").andSelf(); + list = (t.currentItem || t.element).find(":data(ui-droppable)").addBack(); droppablesLoop: for (i = 0; i < m.length; i++) { |