Skip to content

Commit

Permalink
Build for release
Browse files Browse the repository at this point in the history
  • Loading branch information
hasanbalci committed Dec 8, 2017
1 parent d3d25e3 commit a0645e5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cytoscape-cose-bilkent.js
Original file line number Diff line number Diff line change
Expand Up @@ -3703,6 +3703,7 @@ FDLayout.prototype.reduceTrees = function () {
FDLayout.prototype.growTree = function (prunedNodesAll) {
var lengthOfPrunedNodesInStep = prunedNodesAll.length;
var prunedNodesInStep = prunedNodesAll[lengthOfPrunedNodesInStep - 1];

var nodeData;
for (var i = 0; i < prunedNodesInStep.length; i++) {
nodeData = prunedNodesInStep[i];
Expand Down Expand Up @@ -4109,6 +4110,7 @@ _CoSELayout.prototype.run = function () {

var gm = layout.newGraphManager();
this.gm = gm;

var nodes = this.options.eles.nodes();
var edges = this.options.eles.edges();

Expand Down Expand Up @@ -5401,6 +5403,7 @@ var _remove = function _remove(node, list) {
var prev = node.prev,
next = node.next;


if (prev !== null) {
prev.next = next;
} else {
Expand Down Expand Up @@ -5510,6 +5513,7 @@ module.exports = LinkedList;

"use strict";


// registers the extension on a cytoscape lib ref

var getLayout = __webpack_require__(27);
Expand Down

0 comments on commit a0645e5

Please sign in to comment.