Working on drag..

This commit is contained in:
Paulo Veiga
2012-01-12 13:44:35 -03:00
parent aee1dfbff9
commit eca97f6a72
6 changed files with 15 additions and 20 deletions

View File

@@ -121,7 +121,7 @@ mindplot.DragTopic = new Class({
return true;
},
updateDraggedTopic : function(workspace) {
applyChanges : function(workspace) {
$assert(workspace, 'workspace can not be null');
var dragPivot = this._getDragPivot();
@@ -190,7 +190,7 @@ mindplot.DragTopic.init = function(workspace) {
$assert(workspace, "workspace can not be null");
var pivot = mindplot.DragTopic.__getDragPivot();
workspace.appendChild(pivot);
}
};
mindplot.DragTopic.__getDragPivot = function() {
var result = mindplot.DragTopic._dragPivot;