Skip to content

Commit

Permalink
Merge branch 'master' of github.com:orientechnologies/orientdb-studio
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolazzara committed Oct 20, 2013
2 parents 0282367 + 90a846f commit 278bf34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/scripts/controllers/graph-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ GrapgController.controller("VertexEditController",['$scope','$injector','$routeP
$scope.isGraph = Database.isGraph($scope.doc['@class']);
$scope.incomings = Database.getEdge($scope.doc,'in_');
$scope.outgoings = Database.getEdge($scope.doc,'out_');
$scope.outgoings = $scope.outgoings.concat((Database.getLink($scope.doc,$scope.outgoings)));
$scope.exclude = $scope.outgoings.concat($scope.incomings);
$scope.outgoings = $scope.outgoings.concat((Database.getLink($scope.doc,$scope.exclude)));


}
Expand Down

0 comments on commit 278bf34

Please sign in to comment.