this.zoomin = function()

in archive/src/app/directives/sentenforest-directive.js [28:44]


      this.zoomin = function(zoomTree, zoomNode) {
        angular.forEach(trees, function(tree) {
          if( tree != zoomTree ) {
            tree.showMe = false;
          }
        });        
        safeApply($scope, function() {
          var result = graphBuilder.updateGraphs($scope.tokens, $scope.passTerms, $scope.rootSeq, $scope.minSupport, $scope.maxSupport, $scope.graphs, zoomNode.seq);
          $scope.rootSeq = result.root;
          $scope.graphs = result.graphs;
          $scope.graphsFreqMax = result.graphsFreqMax;
          $scope.graphsFreqMin = result.graphsFreqMin;
        });
        

        zoomTree.showView();
      };