@@ -49,7 +49,6 @@ var pfCanvas = {};
49
49
// Compute the position of a connector in the graph.
50
50
//
51
51
pfCanvas . computeConnectorPos = function ( node , connectorIndex , inputConnector ) {
52
- console . log ( 'd' ) ;
53
52
return {
54
53
x : node . x ( ) + ( inputConnector ? 0 : node . width ? node . width ( ) : pfCanvas . defaultNodeWidth ) ,
55
54
y : node . y ( ) + pfCanvas . computeConnectorY ( connectorIndex )
@@ -158,7 +157,6 @@ var pfCanvas = {};
158
157
//
159
158
pfCanvas . NodeViewModel = function ( nodeDataModel ) {
160
159
this . data = nodeDataModel ;
161
- console . log ( 'new node data' , nodeDataModel . data ) ;
162
160
163
161
// set the default width value of the node
164
162
if ( ! this . data . width || this . data . width < 0 ) {
@@ -463,7 +461,6 @@ var pfCanvas = {};
463
461
} ;
464
462
465
463
this . sourceCoordX = function ( ) {
466
- console . log ( 'a' ) ;
467
464
return this . source . parentNode ( ) . x ( ) + this . source . x ( ) ;
468
465
} ;
469
466
@@ -487,7 +484,6 @@ var pfCanvas = {};
487
484
} ;
488
485
489
486
this . destCoordX = function ( ) {
490
- console . log ( 'b' , this . dest . parentNode ( ) . x ( ) , this . dest . x ( ) ) ;
491
487
return this . dest . parentNode ( ) . x ( ) + this . dest . x ( ) ;
492
488
} ;
493
489
@@ -1014,7 +1010,6 @@ var pfCanvas = {};
1014
1010
1015
1011
for ( var i = 0 ; i < this . nodes . length ; ++ i ) {
1016
1012
var node = this . nodes [ i ] ;
1017
- console . log ( 'c' ) ;
1018
1013
if ( node . x ( ) >= selectionRect . x
1019
1014
&& node . y ( ) >= selectionRect . y
1020
1015
&& node . x ( ) + node . width ( ) <= selectionRect . x + selectionRect . width
0 commit comments