Remove event parameter from flo.scheduleUpdateGraphRepresentation. Update the build.
This commit is contained in:
6
dist/spring-flo.js
vendored
6
dist/spring-flo.js
vendored
@@ -28319,8 +28319,7 @@ define('editor-manager',['require','angular','joint','shapes-factory','propertie
|
||||
// }
|
||||
// });
|
||||
|
||||
$scope.flo.scheduleUpdateGraphRepresentation = function (evt) {
|
||||
//enableSyncing(false);
|
||||
$scope.flo.scheduleUpdateGraphRepresentation = function() {
|
||||
if (graphUpdateTimer) {
|
||||
$timeout.cancel(graphUpdateTimer);
|
||||
}
|
||||
@@ -28328,9 +28327,6 @@ define('editor-manager',['require','angular','joint','shapes-factory','propertie
|
||||
graphUpdateTimer = null;
|
||||
updateGraphRepresentation();
|
||||
}, 300 );
|
||||
if (evt) {
|
||||
evt.stopPropagation();
|
||||
}
|
||||
};
|
||||
|
||||
$scope.flo.updateGraphRepresentation = updateGraphRepresentation;
|
||||
|
||||
2
dist/spring-flo.min.js
vendored
2
dist/spring-flo.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1574,8 +1574,7 @@ define(function(require) {
|
||||
// }
|
||||
// });
|
||||
|
||||
$scope.flo.scheduleUpdateGraphRepresentation = function (evt) {
|
||||
//enableSyncing(false);
|
||||
$scope.flo.scheduleUpdateGraphRepresentation = function() {
|
||||
if (graphUpdateTimer) {
|
||||
$timeout.cancel(graphUpdateTimer);
|
||||
}
|
||||
@@ -1583,9 +1582,6 @@ define(function(require) {
|
||||
graphUpdateTimer = null;
|
||||
updateGraphRepresentation();
|
||||
}, 300 );
|
||||
if (evt) {
|
||||
evt.stopPropagation();
|
||||
}
|
||||
};
|
||||
|
||||
$scope.flo.updateGraphRepresentation = updateGraphRepresentation;
|
||||
|
||||
Reference in New Issue
Block a user