summaryrefslogtreecommitdiff
path: root/www/lib/vis/examples/timeline/editing/customSnappingOfItems.html
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
commit210e8feae2fb4842bfb2de38666e6c41671fef3c (patch)
treecbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/vis/examples/timeline/editing/customSnappingOfItems.html
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/vis/examples/timeline/editing/customSnappingOfItems.html')
-rw-r--r--www/lib/vis/examples/timeline/editing/customSnappingOfItems.html55
1 files changed, 0 insertions, 55 deletions
diff --git a/www/lib/vis/examples/timeline/editing/customSnappingOfItems.html b/www/lib/vis/examples/timeline/editing/customSnappingOfItems.html
deleted file mode 100644
index b1c8ef75..00000000
--- a/www/lib/vis/examples/timeline/editing/customSnappingOfItems.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
- <title>Timeline | Custom snapping</title>
-
- <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>
- When moving the items in on the Timeline below, they will snap to full hours,
- independent of being zoomed in or out.
-</p>
-<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: 'A', start: '2015-02-09T04:00:00'},
- {id: 2, content: 'B', start: '2015-02-09T14:00:00'},
- {id: 3, content: 'C', start: '2015-02-09T16:00:00'},
- {id: 4, content: 'D', start: '2015-02-09T17:00:00'},
- {id: 5, content: 'E', start: '2015-02-10T03:00:00'}
- ]);
-
- // Configuration for the Timeline
- var options = {
- editable: true,
-
- // always snap to full hours, independent of the scale
- snap: function (date, scale, step) {
- var hour = 60 * 60 * 1000;
- return Math.round(date / hour) * hour;
- }
-
- // to configure no snapping at all:
- //
- // snap: null
- //
- // or let the snap function return the date unchanged:
- //
- // snap: function (date, scale, step) {
- // return date;
- // }
- };
-
- // Create a Timeline
- var timeline = new vis.Timeline(container, items, options);
-</script>
-</body>
-</html> \ No newline at end of file