Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/timeline/Stack.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Utility functions for ordering and stacking of items
const EPSILON = 0.001; // used when checking collisions, to prevent round-off errors
//Found empirically, in order to avoid unnecessary overlaps and ensure that no element overflow occurs
const EPSILON = 1; // used when checking collisions, to prevent round-off errors

/**
* Order items by their start data
Expand Down