diff --git a/css/examples.css b/css/examples.css index 6f99ca6b..6a5621b0 100644 --- a/css/examples.css +++ b/css/examples.css @@ -58,4 +58,20 @@ div.exampleTitle { line-height: 30px; border-bottom-left-radius:5px; border-bottom-right-radius:5px; -} \ No newline at end of file +} + +a.exampleLink:before { + content:''; + display:inline-block; + margin-left:15px; + width: 15px; + height: 10px; + border-top: 5px solid transparent; + border-bottom: 5px solid transparent; + border-left: 5px solid #688fba; +} + +a.exampleLink { + display:block; + text-decoration: underline; +} diff --git a/examples/timeline/12_custom_styling.html b/examples/timeline/12_custom_styling.html deleted file mode 100644 index c0917b63..00000000 --- a/examples/timeline/12_custom_styling.html +++ /dev/null @@ -1,100 +0,0 @@ - - -
-- The style of the Timeline can be fully customized via CSS: -
- - - - - \ No newline at end of file diff --git a/index.html b/index.html index f6fb5c60..c47a7fb5 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,9 @@ - + + + + + diff --git a/network_examples.html b/network_examples.html index 99952d70..1620a9b6 100644 --- a/network_examples.html +++ b/network_examples.html @@ -22,23 +22,6 @@ - - @@ -76,10 +59,13 @@
-<div id="visualization"></div>
-
-<script type="text/javascript">
- // DOM element where the Timeline will be attached
- var container = document.getElementById('visualization');
- // Create a DataSet (allows two way data-binding)
- var items = new vis.DataSet([
- {id: 1, content: 'item 1', start: '2014-04-20'},
- {id: 2, content: 'item 2', start: '2014-04-14'},
- {id: 3, content: 'item 3', start: '2014-04-18'},
- {id: 4, content: 'item 4', start: '2014-04-16'}
- {id: 5, content: 'item 5', start: '2014-04-25'},
- {id: 6, content: 'item 6', start: '2014-04-27'}
- ]);
-
- // Configuration for the Timeline
- var options = {};
-
- // Create a Timeline
- var timeline = new vis.Timeline(
- container,
- items,
- options
- );
-</script>
-
+
-
-
-
-
-
-