Move sample HTML file to test/data.

This commit is contained in:
Mike Bostock 2012-12-19 11:47:54 -08:00
Родитель 17b584969a
Коммит 223a047b3a
2 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -1,5 +0,0 @@
<!DOCTYPE html>
<html>
<body>
<h1>Hello &amp; world!</h1>
</html>

Просмотреть файл

@ -9,7 +9,7 @@ suite.addBatch({
"html": { "html": {
topic: function() { topic: function() {
var cb = this.callback; var cb = this.callback;
d3.html("examples/data/sample.html", function(error, document) { d3.html("test/data/sample.html", function(error, document) {
cb(null, document); cb(null, document);
}); });
}, },