From 124d0f9bf539758937d683527322ecaca5fb1558 Mon Sep 17 00:00:00 2001 From: jos Date: Fri, 4 Jul 2014 15:23:49 +0200 Subject: [PATCH] Fixed tests and a typo --- docs/timeline.html | 2 +- test/dotparser.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/timeline.html b/docs/timeline.html index 88641855..3cd4fa69 100644 --- a/docs/timeline.html +++ b/docs/timeline.html @@ -348,7 +348,7 @@ var options = { autoResize boolean true - If true, the Timeline will automatically detect when its container is resized, and redraw itself accordingly. If false, the Timeline can be forced to repaint after its container has been resized using the function repaint(). + If true, the Timeline will automatically detect when its container is resized, and redraw itself accordingly. If false, the Timeline can be forced to repaint after its container has been resized using the function redraw(). diff --git a/test/dotparser.js b/test/dotparser.js index 5fccb7e9..48832813 100644 --- a/test/dotparser.js +++ b/test/dotparser.js @@ -1,6 +1,6 @@ var assert = require('assert'), fs = require('fs'), - dot = require('../src/graph/dotparser.js'); + dot = require('../src/network/dotparser.js'); fs.readFile('test/dot.txt', function (err, data) { data = String(data);