You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Packery's bindUIDraggableEvents expects a ui parameter. The problem is that when the event is not triggered by jQuery, no ui parameter is passed. This causes an attempt to access position of undefined.
Packery's
bindUIDraggableEvents
expects aui
parameter. The problem is that when the event is not triggered by jQuery, noui
parameter is passed. This causes an attempt to accessposition
ofundefined
.Don't know if dragabilly handles it correctly.
To reproduce the error, access http://jsfiddle.net/4tee5qav/1/
There, you should select the "content" text, and drag it.
My temporary fix wast to add an
if (!ui) return;
on Packery's bindings.The text was updated successfully, but these errors were encountered: