Browse Source

Replaced underscores in example names with camel case

flowchartTest
jos 9 years ago
parent
commit
a1b987be77
19 changed files with 33110 additions and 33167 deletions
  1. +33110
    -33110
      dist/vis.js
  2. +0
    -0
      examples/graph2d/16_bothAxisTitles.html
  3. +0
    -0
      examples/network/basicUsage.html
  4. +0
    -0
      examples/network/data/importingFromGephi.html
  5. +0
    -0
      examples/network/data/scalingCustom.html
  6. +0
    -0
      examples/network/data/scalingNodesEdges.html
  7. +0
    -0
      examples/network/data/scalingNodesEdgesLabels.html
  8. +0
    -0
      examples/network/exampleApplications/lesMiserables.html
  9. +0
    -0
      examples/network/exampleApplications/neighbourhoodHighlight.html
  10. +0
    -57
      examples/network/index.html
  11. +0
    -0
      examples/network/labels/labelAlignment.html
  12. +0
    -0
      examples/network/labels/labelBackground.html
  13. +0
    -0
      examples/network/labels/labelColorAndSize.html
  14. +0
    -0
      examples/network/labels/labelStroke.html
  15. +0
    -0
      examples/network/labels/multilineText.html
  16. +0
    -0
      examples/network/layout/hierarchicalLayout.html
  17. +0
    -0
      examples/network/layout/hierarchicalLayoutMethods.html
  18. +0
    -0
      examples/network/layout/hierarchicalLayoutUserdefined.html
  19. +0
    -0
      examples/network/nodeStyles/circularImages.html

+ 33110
- 33110
dist/vis.js
File diff suppressed because it is too large
View File


examples/graph2d/16_bothAxis_titles.html → examples/graph2d/16_bothAxisTitles.html View File


examples/network/basic_usage.html → examples/network/basicUsage.html View File


examples/network/data/importing_from_gephi.html → examples/network/data/importingFromGephi.html View File


examples/network/data/scaling_custom.html → examples/network/data/scalingCustom.html View File


examples/network/data/scaling_nodes_edges.html → examples/network/data/scalingNodesEdges.html View File


examples/network/data/scaling_nodes_edges_labels.html → examples/network/data/scalingNodesEdgesLabels.html View File


examples/network/exampleApplications/les_miserables.html → examples/network/exampleApplications/lesMiserables.html View File


examples/network/exampleApplications/neighbourhood_highlight.html → examples/network/exampleApplications/neighbourhoodHighlight.html View File


+ 0
- 57
examples/network/index.html View File

@ -1,57 +0,0 @@
<!doctype html>
<html>
<head>
<title>vis.js | Network examples</title>
<link href='../../docs/css/style.css' type='text/css' rel='stylesheet'>
<script src="../googleAnalytics.js"></script>
</head>
<body>
<div id="container">
<h1>vis.js Network 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="09_scaling.html">09_scaling.html</a></p>
<p><a href="10_multiline_text.html">10_multiline_text.html</a></p>
<p><a href="11_styling.html">11_styling.html</a></p>
<p><a href="12_arrows.html">12_arrows.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="17_network_info.html">17_network_info.html</a></p>
<p><a href="18_fully_random_nodes_clustering.html">18_fully_random_nodes_clustering.html</a></p>
<p><a href="19_scale_free_graph_clustering.html">19_scale_free_graph_clustering.html</a></p>
<p><a href="20_navigation.html">20_navigation.html</a></p>
<p><a href="21_data_manipulation.html">21_data_manipulation.html</a></p>
<p><a href="22_les_miserables.html">22_les_miserables.html</a></p>
<p><a href="23_hierarchical_layout.html">23_hierarchical_layout.html</a></p>
<p><a href="24_hierarchical_layout_userdefined.html">24_hierarchical_layout_userdefined.html</a></p>
<p><a href="25_physics_configuration.html">25_physics_configuration.html</a></p>
<p><a href="26_staticSmoothCurves.html">26_staticSmoothCurves.html</a></p>
<p><a href="27_world_cup_network.html">27_world_cup_network.html</a></p>
<p><a href="28_world_cup_network_performance.html">28_world_cup_network_performance.html</a></p>
<p><a href="29_neighbourhood_highlight.html">29_neighbourhood_highlight.html</a></p>
<p><a href="30_importing_from_gephi.html">30_importing_from_gephi.html</a></p>
<p><a href="31_manipulation_and_localization.html">31_localization.html</a></p>
<p><a href="32_hierarchicaLayoutMethods.html">32_hierarchicaLayoutMethods.html</a></p>
<p><a href="33_animation.html">33_animation.html</a></p>
<p><a href="34_circular_images.html">34_circular_images.html</a></p>
<p><a href="35_label_stroke.html">35_label_stroke.html</a></p>
<p><a href="36_HTML_in_Nodes.html">36_HTML_in_Nodes.html</a></p>
<p><a href="37_label_alignment.html">37_label_alignment.html</a></p>
<p><a href="38_node_as_icon.html">38_node_as_icon.html</a></p>
<p><a href="graphviz/graphviz_gallery.html">graphviz_gallery.html</a></p>
</div>
</body>
</html>

examples/network/labels/label_alignment.html → examples/network/labels/labelAlignment.html View File


examples/network/labels/label_background.html → examples/network/labels/labelBackground.html View File


examples/network/labels/label_color_and_size.html → examples/network/labels/labelColorAndSize.html View File


examples/network/labels/label_stroke.html → examples/network/labels/labelStroke.html View File


examples/network/labels/multiline_text.html → examples/network/labels/multilineText.html View File


examples/network/layout/hierarchical_layout.html → examples/network/layout/hierarchicalLayout.html View File


examples/network/layout/hierarchical_layout_methods.html → examples/network/layout/hierarchicalLayoutMethods.html View File


examples/network/layout/hierarchical_layout_userdefined.html → examples/network/layout/hierarchicalLayoutUserdefined.html View File


examples/network/nodeStyles/circular_images.html → examples/network/nodeStyles/circularImages.html View File


Loading…
Cancel
Save