UNPKG

vis-timeline

Version:

Create a fully customizable, interactive timeline with items and ranges.

13 lines (11 loc) 264 B
/* global window: false */ /** * Simulates confirmation usind window.confirm and window.alert otherwise the * screenshot generator would just hang forever. */ (() => { window.alert = function() {}; window.confirm = function() { return true; }; })();