Remove event parameter from flo.scheduleUpdateGraphRepresentation. Update the build.

This commit is contained in:
BoykoAlex
2016-05-10 22:07:56 -04:00
parent 2b53ad7cc6
commit 135fd1c3e5
3 changed files with 3 additions and 11 deletions

6
dist/spring-flo.js vendored
View File

@@ -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;

File diff suppressed because one or more lines are too long

View File

@@ -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;