Merge remote branch 'origin/develop' into develop

This commit is contained in:
joewitt 2014-12-16 21:21:08 -05:00
commit 1b23671eb3
1 changed files with 8 additions and 5 deletions

View File

@ -164,12 +164,15 @@ nf.ProcessGroup = (function () {
var targetData = target.datum(); var targetData = target.datum();
// see if there is a selection being dragged // see if there is a selection being dragged
var selection = d3.select('rect.drag-selection'); var drag = d3.select('rect.drag-selection');
if (!selection.empty()) { if (!drag.empty()) {
var selectionData = selection.datum(); // filter the current selection by this group
var selection = nf.CanvasUtils.getSelection().filter(function(d) {
return targetData.component.id === d.component.id;
});
// ensure what is being dragged isn't the target // ensure this group isn't in the selection
if (targetData.component.id !== selectionData.component.id) { if (selection.empty()) {
// mark that we are hovering over a drop area if appropriate // mark that we are hovering over a drop area if appropriate
target.classed('drop', function () { target.classed('drop', function () {
// get the current selection and ensure its disconnected // get the current selection and ensure its disconnected