delegate.js revision e912e5deebeae5c0609ed443e759bdda479ed80a
var D = function(o) {
},
dd_cache = {};
D.NAME = 'delegate';
D.ATTRS = {
cont: {
value: 'body'
},
nodes: {
value: '.dd-draggable'
},
lastNode: {
},
currentNode: {
},
over: {
value: false
},
target: {
value: false
}
};
_dd: null,
_shimState: null,
initializer: function() {
//Create a tmp DD instance under the hood.
bubbles: this
});
//On end drag, detach the listeners
}, this));
//Attach the delegate to the container
} else {
}
}, this), this.get('cont'));
}, this), this.get('cont'));
this.syncTargets();
},
syncTargets: function() {
Y.error('DD.Delegate: Drop Plugin Not Found');
return;
}
if (this.get('target')) {
if (!i.drop) {
}
});
}
},
},
destructor: function() {
if (this._dd) {
}
}
});
Y.namespace('DD');