Author: jablko
Date: Tue Oct 6 11:10:04 2009
New Revision: 3677
Log:
Revert to YAHOO.util.DDProxy() to avoid page refresh on drag and drop, lost in
revision 3565 -- force
Modified:
trunk/web/js/treeView.js
Modified: trunk/web/js/treeView.js
==============================================================================
--- trunk/web/js/treeView.js Tue Oct 6 11:05:21 2009 (r3676)
+++ trunk/web/js/treeView.js Tue Oct 6 11:10:04 2009 (r3677)
@@ -18,7 +18,7 @@
if (Qubit.treeView.draggable && !textNode.parent.isRoot())
{
- var dd = new YAHOO.util.DD(textNode.labelElId);
+ var dd = new YAHOO.util.DDProxy(textNode.labelElId);
dd.invalidHandleTypes = {};
@@ -74,7 +74,7 @@
if (Qubit.treeView.draggable && !tmp.parent.isRoot())
{
- var dd = new YAHOO.util.DD(tmp.labelElId);
+ var dd = new YAHOO.util.DDProxy(tmp.labelElId);
dd.invalidHandleTypes = {};
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---