Skip to content

Commit

Permalink
app.js -> greuler.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauricio Poppe committed Jul 16, 2015
1 parent 4a40c83 commit 4e8865c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# greuler

[![Build Status][travis-image]][travis-url] <img src="//benschwarz.github.io/bower-badges/badge@2x.png" width="130" height="30">
[![Build Status][travis-image]][travis-url] <img src="https://github.com/maurizzzio/bower-badges/blob/master/badge@2x.png" width="130" height="30">

[![NPM][npm-image]][npm-url]

Expand Down
Binary file added badge@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
22 changes: 10 additions & 12 deletions dist/index.html

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/scripts/examples/site/intro.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@
timeIn[u] = low[u] = ++timeSpent;

yield function () {
instance.graph.getNode({ id: u }).topRightLabel = timeIn[u] + '/' + low[u];
//instance.graph.getNode({ id: u }).topRightLabel = timeIn[u] + '/' + low[u];
instance.selector.highlightNode({ id: u });
instance.update({ skipLayout: true });
//instance.update({ skipLayout: true });
};

var adjacent = instance.graph.getAdjacentNodes({ id: u });
Expand All @@ -253,7 +253,7 @@
low[u] = Math.min(low[u], low[v]);
} else if (timeIn[v] < timeIn[u]) {
// back edge
console.log(++total);
//console.log(++total);

yield function () {
instance.selector.traverseAllEdgesBetween({ source: u, target: v }, {stroke: 'cyan'});
Expand All @@ -265,9 +265,9 @@
low[u] = Math.min(low[u], timeIn[v]);

yield function () {
instance.graph.getNode({ id: u }).topRightLabel = timeIn[u] + '/' + low[u];
//instance.graph.getNode({ id: u }).topRightLabel = timeIn[u] + '/' + low[u];
instance.selector.highlightNode({ id: u });
instance.update({ skipLayout: true });
//instance.update({ skipLayout: true });
};
}
}
Expand Down
Binary file added public/favicon.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4e8865c

Please sign in to comment.