r2208 - trunk/ui

r2208 - trunk/ui


Author: cloudream@gmail.com
Date: Thu Mar 5 07:18:07 2009
New Revision: 2208
Modified:
trunk/ui/ui.droppable.js
Log:
Droppable: droppable('option', 'accept', selector) fails. fixes #4278
Modified: trunk/ui/ui.droppable.js
==============================================================================
--- trunk/ui/ui.droppable.js    (original)
+++ trunk/ui/ui.droppable.js    Thu Mar 5 07:18:07 2009
@@ -51,7 +51,7 @@
        if(key == 'accept') {
            this.options.accept = value && $.isFunction(value) ? value :
function(d) {
-                return d.is(accept);
+                return d.is(value);
            };
        } else {
            $.widget.prototype._setData.apply(this, arguments);