Compare commits

...

1 Commits

Author SHA1 Message Date
37c0fcf3d9 drop gesture allowed on browse 2015-10-20 15:43:12 -07:00

View File

@ -98,7 +98,8 @@ define(
// If currently in edit mode allow drag and drop gestures to the
// domain object. An exception to this is folders which have drop
// gestures in browse mode.
if (domainObjectType === 'folder' || domainObject.hasCapability('editor')) {
//if (domainObjectType === 'folder' ||
// domainObject.hasCapability('editor')) {
// Handle the drop; add the dropped identifier to the
// destination domain object's composition, and persist
@ -108,7 +109,7 @@ define(
broadcastDrop(id, event);
});
}
}
//}
// TODO: Alert user if drag and drop is not allowed
}