Ability to post validation from client service

This commit is contained in:
BoykoAlex
2017-04-07 17:33:05 -04:00
parent c334e4eb27
commit ed1373013a
3 changed files with 13 additions and 1 deletions

6
dist/spring-flo.js vendored
View File

@@ -29893,6 +29893,12 @@ define('controllers/graph-editor',['require','angular','joint','jquery','common/
$scope.flo._handleNodeDropping = handleNodeDropping;
$scope.flo._postValidation = function(ids) {
$timeout(function() {
postValidation(ids);
});
};
}];
});

File diff suppressed because one or more lines are too long

View File

@@ -1721,5 +1721,11 @@ define(function(require) {
$scope.flo._handleNodeDropping = handleNodeDropping;
$scope.flo._postValidation = function(ids) {
$timeout(function() {
postValidation(ids);
});
};
}];
});