diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
| commit | 210e8feae2fb4842bfb2de38666e6c41671fef3c (patch) | |
| tree | cbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/vis/examples/timeline/other/localization.html | |
| parent | e7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff) | |
removed lib
Diffstat (limited to 'www/lib/vis/examples/timeline/other/localization.html')
| -rw-r--r-- | www/lib/vis/examples/timeline/other/localization.html | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/www/lib/vis/examples/timeline/other/localization.html b/www/lib/vis/examples/timeline/other/localization.html deleted file mode 100644 index 5b58923b..00000000 --- a/www/lib/vis/examples/timeline/other/localization.html +++ /dev/null @@ -1,68 +0,0 @@ -<!DOCTYPE HTML> -<html> -<head> - <title>Timeline | Localization</title> - - <style type="text/css"> - body, html, select { - font-family: sans-serif; - font-size: 11pt; - } - </style> - - <script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment-with-locales.min.js"></script> - <script src="../../../dist/vis.js"></script> - <link href="../../../dist/vis-timeline-graph2d.min.css" rel="stylesheet" type="text/css" /> - <script src="../../googleAnalytics.js"></script> -</head> -<body> -<p> - To localize the Timeline, one has to load a version of moment.js including locales. To set a locale, specify option <code>{locale: STRING}</code>. -</p> - -<p> - <label for="locale">Select a locale:</label> - <select id="locale"> - <option value="en" selected>en</option> - <option value="it">it</option> - <option value="nl">nl</option> - <option value="de">de</option> - </select> -</p> - -<div id="visualization"></div> - -<script type="text/javascript"> - var DAY = 24 * 60 * 60 * 1000; - - // 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: new Date(new Date().valueOf() - DAY)}, - {id: 2, content: 'item 2', start: new Date(new Date().valueOf() + 2 * DAY)} - ]); - - // Configuration for the Timeline - var options = { - showCurrentTime: true - }; - - // Create a Timeline - var timeline = new vis.Timeline(container, items, options); - timeline.addCustomTime(new Date()); - - timeline.setCustomTime(new Date(new Date().valueOf() + DAY)); - - // update the locale when changing the select box value - var select = document.getElementById('locale'); - select.onchange = function () { - timeline.setOptions({ - locale: this.value - }); - }; - select.onchange(); -</script> -</body> -</html> |
