diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-13 21:58:16 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-05-20 14:27:56 -0400 |
commit | 35ef105430e1c3295cd18841ce2cf2a79b26d69a (patch) | |
tree | 1e71f24b326659d6037ad249761c44789210a24e /demos/droppable | |
parent | ce949812b671d26f82e21f1856d73fde2f43f2dd (diff) | |
download | jquery-ui-35ef105430e1c3295cd18841ce2cf2a79b26d69a.tar.gz jquery-ui-35ef105430e1c3295cd18841ce2cf2a79b26d69a.zip |
Droppable: Remove core event/alias and deprecated module dependencies
Diffstat (limited to 'demos/droppable')
-rw-r--r-- | demos/droppable/photo-manager.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/droppable/photo-manager.html b/demos/droppable/photo-manager.html index 6a8cf33d1..39afa9c32 100644 --- a/demos/droppable/photo-manager.html +++ b/demos/droppable/photo-manager.html @@ -124,7 +124,7 @@ } // resolve the icons behavior with event delegation - $( "ul.gallery > li" ).click(function( event ) { + $( "ul.gallery > li" ).on( "click", function( event ) { var $item = $( this ), $target = $( event.target ); |