diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index e27ef7fcc..14704fb0b 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.7.4 + - fixed #9764: drag drop now uses the handle for 'pickup' rather than the whole object. - Default Survey Question bundles now store full answer information in json. Everything configured in an answer will be saved in a default configuration. - Survey [[question variable]] now returns the shown answer text for multiple choice questions, and the recorded value for non-multiple choice questions. - fixed #10142: Matrix 2.0 - Search screen compare button not functional diff --git a/docs/upgrades/packages-7.7.4/default_page.wgpkg b/docs/upgrades/packages-7.7.4/default_page.wgpkg new file mode 100644 index 000000000..a611eb440 Binary files /dev/null and b/docs/upgrades/packages-7.7.4/default_page.wgpkg differ diff --git a/www/extras/yui-webgui/build/layout/draggable.js b/www/extras/yui-webgui/build/layout/draggable.js index 162297230..2eb15f2fd 100644 --- a/www/extras/yui-webgui/build/layout/draggable.js +++ b/www/extras/yui-webgui/build/layout/draggable.js @@ -223,8 +223,10 @@ function dragable_init(url) { }else { for (i = 0; i< children.length;i++) { draggableObjectList[draggableObjectList.length] = children[i]; - new YAHOO.webgui.DDList(document.getElementById(children[i].id + "_div")); - new YAHOO.util.DDTarget(document.getElementById(children[i].id + "_div")); + dragDropElement = document.getElementById(children[i].id + "_div"); + dragDrop = new YAHOO.webgui.DDList(dragDropElement); + new YAHOO.util.DDTarget(dragDropElement); + dragDrop.setHandleElId(children[i].id + "_handle"); } } obj = document.getElementById("position" + contentCount);