mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 00:24:21 +02:00
Squashed 'lib/vis/' content from commit 1d029ca
git-subtree-dir: lib/vis git-subtree-split: 1d029cab7b527f3b292e95d550efbf784dac8699
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<script src="../dist/vis.js"></script>
|
||||
<link href="../dist/vis.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
var diffs = [
|
||||
1000,
|
||||
1000 * 60,
|
||||
1000 * 60 * 60,
|
||||
1000 * 60 * 60 * 24,
|
||||
1000 * 60 * 60 * 24 * 30,
|
||||
1000 * 60 * 60 * 24 * 30 * 100,
|
||||
1000 * 60 * 60 * 24 * 30 * 10000
|
||||
];
|
||||
|
||||
diffs.forEach(function (diff) {
|
||||
var step = new vis.TimeStep(new Date(), new Date((new Date()).valueOf() + diff), diff / 40);
|
||||
console.log(diff, step._start.toLocaleString(), step._end.toLocaleString(), step.scale, step.step);
|
||||
step.first();
|
||||
while (step.hasNext()) {
|
||||
console.log(step.getLabelMajor(), ' --- ', step.getLabelMinor());
|
||||
step.next();
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user