Browse Source

Added index pages to the examples

css_transitions
josdejong 11 years ago
parent
commit
cc1509caef
7 changed files with 79 additions and 6 deletions
  1. +0
    -1
      docs/dataset.html
  2. +0
    -1
      docs/dataview.html
  3. +0
    -1
      docs/index.html
  4. +1
    -3
      docs/timeline.html
  5. +35
    -0
      examples/graph/index.html
  6. +20
    -0
      examples/index.html
  7. +23
    -0
      examples/timeline/index.html

+ 0
- 1
docs/dataset.html View File

@ -3,7 +3,6 @@
<head>
<title>vis.js | DataSet documentation</title>
<link rel='stylesheet' href='css/style.css' type='text/css' />
<link href="css/prettify.css" type="text/css" rel="stylesheet" />
<link href='css/style.css' type='text/css' rel='stylesheet'>

+ 0
- 1
docs/dataview.html View File

@ -3,7 +3,6 @@
<head>
<title>vis.js | DataView documentation</title>
<link rel='stylesheet' href='css/style.css' type='text/css' />
<link href="css/prettify.css" type="text/css" rel="stylesheet" />
<link href='css/style.css' type='text/css' rel='stylesheet'>

+ 0
- 1
docs/index.html View File

@ -3,7 +3,6 @@
<head>
<title>vis.js | documentation</title>
<link rel='stylesheet' href='css/style.css' type='text/css' />
<link href="css/prettify.css" type="text/css" rel="stylesheet" />
<link href='css/style.css' type='text/css' rel='stylesheet'>

+ 1
- 3
docs/timeline.html View File

@ -141,9 +141,7 @@ var items = [
start: new Date(2010, 7, 15),
end: new Date(2010, 8, 2), // end is optional
content: 'Trajectory A'
// Optional: a field 'group'
// Optional: a field 'className'
// Optional: a field 'editable'
// Optional: fields 'id', 'type', 'group', 'className'
}
// more items...
]);

+ 35
- 0
examples/graph/index.html View File

@ -0,0 +1,35 @@
<!doctype html>
<html>
<head>
<title>vis.js | examples</title>
<link href='../../docs/css/style.css' type='text/css' rel='stylesheet'>
</head>
<body>
<div id="container">
<h1>vis.js examples</h1>
<p><a href="01_basic_usage.html">01_basic_usage.html</a></p>
<p><a href="02_random_nodes.html">02_random_nodes.html</a></p>
<p><a href="03_images.html">03_images.html</a></p>
<p><a href="04_shapes.html">04_shapes.html</a></p>
<p><a href="05_social_network.html">05_social_network.html</a></p>
<p><a href="06_groups.html">06_groups.html</a></p>
<p><a href="07_selections.html">07_selections.html</a></p>
<p><a href="08_mobile_friendly.html">08_mobile_friendly.html</a></p>
<p><a href="09_sizing.html">09_sizing.html</a></p>
<p><a href="10_multiline_text.html">10_multiline_text.html</a></p>
<p><a href="11_custom_style.html">11_custom_style.html</a></p>
<p><a href="12_scalable_images.html">12_scalable_images.html</a></p>
<p><a href="13_dashed_lines.html">13_dashed_lines.html</a></p>
<p><a href="14_dot_language.html">14_dot_language.html</a></p>
<p><a href="15_dot_language_playground.html">15_dot_language_playground.html</a></p>
<p><a href="16_dynamic_data.html">16_dynamic_data.html</a></p>
<p><a href="graphviz/graphviz_gallery.html">graphviz_gallery.html</a></p>
</div>
</body>
</html>

+ 20
- 0
examples/index.html View File

@ -0,0 +1,20 @@
<!doctype html>
<html>
<head>
<title>vis.js | examples</title>
<link href='../docs/css/style.css' type='text/css' rel='stylesheet'>
</head>
<body>
<div id="container">
<h1>vis.js examples</h1>
<p><a href="graph">graph</a></p>
<p><a href="timeline">timeline</a></p>
</div>
</body>
</html>

+ 23
- 0
examples/timeline/index.html View File

@ -0,0 +1,23 @@
<!doctype html>
<html>
<head>
<title>vis.js | examples</title>
<link href='../../docs/css/style.css' type='text/css' rel='stylesheet'>
</head>
<body>
<div id="container">
<h1>vis.js examples</h1>
<p><a href="01_basic.html">01_basic.html</a></p>
<p><a href="02_dataset.html">02_dataset.html</a></p>
<p><a href="03_much_data.html">03_much_data.html</a></p>
<p><a href="04_html_data.html">04_html_data.html</a></p>
<p><a href="05_groups.html">05_groups.html</a></p>
</div>
</body>
</html>

Loading…
Cancel
Save