diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-12-23 22:01:18 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-12-23 22:01:18 -0500 |
commit | 995472e31c181c729944d2bd9f2c4af5453705e3 (patch) | |
tree | 0dbf6d35b739c54f2281499239c0ed102f325c9b /js | |
parent | a9394e1035147e3910b2dc3cf156b0361ea791cc (diff) | |
download | elgg-995472e31c181c729944d2bd9f2c4af5453705e3.tar.gz elgg-995472e31c181c729944d2bd9f2c4af5453705e3.tar.bz2 |
Fixes #4186 restricting the drag handle for widgets
Diffstat (limited to 'js')
-rw-r--r-- | js/lib/ui.widgets.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/ui.widgets.js b/js/lib/ui.widgets.js index 47e43c876..6114aeacd 100644 --- a/js/lib/ui.widgets.js +++ b/js/lib/ui.widgets.js @@ -15,7 +15,7 @@ elgg.ui.widgets.init = function() { $(".elgg-widgets").sortable({ items: 'div.elgg-module-widget.elgg-state-draggable', connectWith: '.elgg-widgets', - handle: 'div.elgg-head', + handle: '.elgg-widget-handle', forcePlaceholderSize: true, placeholder: 'elgg-widget-placeholder', opacity: 0.8, |