Browse Source

updated dist docs and examples

gh-pages
Alex de Mulder 10 years ago
parent
commit
d2b2ee7506
10 changed files with 26568 additions and 26457 deletions
  1. +26548
    -26437
      dist/vis.js
  2. +1
    -1
      dist/vis.map
  3. +12
    -12
      dist/vis.min.js
  4. +1
    -1
      docs/css/style.css
  5. +1
    -1
      examples/graph2d/08_performance.html
  6. +1
    -1
      examples/graph2d/13_localization.html
  7. +1
    -1
      examples/network/34_circular_images.html
  8. +1
    -1
      examples/timeline/03_performance.html
  9. +1
    -1
      examples/timeline/05_groups.html
  10. +1
    -1
      examples/timeline/13_past_and_future.html

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


+ 1
- 1
dist/vis.map
File diff suppressed because it is too large
View File


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


+ 1
- 1
docs/css/style.css View File

@ -79,5 +79,5 @@ td {
p.important_note {
color: #3a6baa;
font-weight:bold;
font-weight:bold;
}

+ 1
- 1
examples/graph2d/08_performance.html View File

@ -15,7 +15,7 @@
</style>
<!-- note: moment.js must be loaded before vis.js, else vis.js uses its embedded version of moment.js -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.3.1/moment.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js"></script>
<script src="../../dist/vis.js"></script>
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />

+ 1
- 1
examples/graph2d/13_localization.html View File

@ -13,7 +13,7 @@
}
</style>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.7.0/moment-with-langs.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment-with-langs.min.js"></script>
<script src="../../dist/vis.js"></script>
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
</head>

+ 1
- 1
examples/network/34_circular_images.html View File

@ -1,7 +1,7 @@
<!doctype html>
<html>
<head>
<title>Network | Scalable images</title>
<title>Network | Circular images</title>
<style type="text/css">
body {

+ 1
- 1
examples/timeline/03_performance.html View File

@ -11,7 +11,7 @@
</style>
<!-- note: moment.js must be loaded before vis.js, else vis.js uses its embedded version of moment.js -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.3.1/moment.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js"></script>
<script src="../../dist/vis.js"></script>
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />

+ 1
- 1
examples/timeline/05_groups.html View File

@ -17,7 +17,7 @@
</style>
<!-- note: moment.js must be loaded before vis.js, else vis.js uses its embedded version of moment.js -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.3.1/moment.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js"></script>
<script src="../../dist/vis.js"></script>
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />

+ 1
- 1
examples/timeline/13_past_and_future.html View File

@ -80,7 +80,7 @@
// set a custom range from -2 minute to +3 minutes current time
var start = new Date((new Date()).getTime() - 2 * 60 * 1000);
var end = new Date((new Date()).getTime() + 3 * 60 * 1000);
timeline.setWindow(start, end);
timeline.setWindow(start, end, {animate: false});
</script>

Loading…
Cancel
Save