mirror of
https://github.com/nasa/openmct.git
synced 2025-01-15 01:10:51 +00:00
11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
|
/*global define*/
|
||
|
|
||
|
/**
|
||
|
* Defines constant values for use in timeline view.
|
||
|
*/
|
||
|
define({
|
||
|
// Pixel width of start/end handles
|
||
|
HANDLE_WIDTH: 32,
|
||
|
// Pixel tolerance for snapping behavior
|
||
|
SNAP_WIDTH: 16
|
||
|
});
|