Browse Source

Fixed tests and a typo

css_transitions
jos 10 years ago
parent
commit
124d0f9bf5
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      docs/timeline.html
  2. +1
    -1
      test/dotparser.js

+ 1
- 1
docs/timeline.html View File

@ -348,7 +348,7 @@ var options = {
<td>autoResize</td>
<td>boolean</td>
<td>true</td>
<td>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 <code>repaint()</code>.</td>
<td>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 <code>redraw()</code>.</td>
</tr>
<tr>

+ 1
- 1
test/dotparser.js View File

@ -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);

Loading…
Cancel
Save