Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change github.com links to github.io links #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Try to imagine it as a bunch of springs connected to each other.
Demo
----

[basic](http://dhotson.github.com/springy/demo.html)
| [simplified API](http://dhotson.github.com/springy/demo-simple.html)
| [JSON API](http://dhotson.github.com/springy/demo-json.html)
[basic](http://dhotson.github.io/springy/demo.html)
| [simplified API](http://dhotson.github.io/springy/demo-simple.html)
| [JSON API](http://dhotson.github.io/springy/demo-json.html)


Getting Started
Expand All @@ -41,11 +41,11 @@ half assed drag and drop.
Basic Usage
----

See [demo.html](http://dhotson.github.com/springy/demo.html) for the way to
See [demo.html](http://dhotson.github.io/springy/demo.html) for the way to
add nodes and edges to graph and springyui.js for the rendering example.

Springy 1.1+ supports simplified API for adding nodes and edges, see
[demo-simple.html](http://dhotson.github.com/springy/demo-simple.html):
[demo-simple.html](http://dhotson.github.io/springy/demo-simple.html):

var graph = new Springy.Graph();
graph.addNodes('mark', 'higgs', 'other', 'etc');
Expand All @@ -56,7 +56,7 @@ Springy 1.1+ supports simplified API for adding nodes and edges, see
);

Springy 1.2+ also accepts JSON, see
[demo-json.html](http://dhotson.github.com/springy/demo-json.html):
[demo-json.html](http://dhotson.github.io/springy/demo-json.html):

graphJSON = {
"nodes": ["mark", "higgs", "other", "etc"],
Expand Down