2017-04-05 33 views

Antwort

0

Sieht aus wie die folgenden Werke

mxGraphHandler.prototype.isDelayedSelection = function(cell, me) { 
     return true; 
    }; 

    mxGraphHandler.prototype.getCells = function(initialCell) { 
     if (this.graph.getSelectionCells().includes(initialCell)) { 
      return this.graph.getMovableCells(this.graph.getSelectionCells()); 
     } 
     return this.graph.getMovableCells([initialCell]); 
    }; 
Verwandte Themen