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

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;