mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 10:11:03 +00:00
* Adjust Firefox zoom sensitivity. * Animate zooming to make it appear smoother (especially on Firefox). * Debounced zoom tracking. * Addressed the comments.
15 lines
456 B
JavaScript
15 lines
456 B
JavaScript
/* Intervals in ms */
|
|
export const API_REFRESH_INTERVAL = 30000;
|
|
export const TOPOLOGY_REFRESH_INTERVAL = 5000;
|
|
|
|
export const TOPOLOGY_LOADER_DELAY = 100;
|
|
|
|
export const TABLE_ROW_FOCUS_DEBOUNCE_INTERVAL = 10;
|
|
export const VIEWPORT_RESIZE_DEBOUNCE_INTERVAL = 200;
|
|
|
|
export const ZOOM_CACHE_DEBOUNCE_INTERVAL = 500;
|
|
export const ZOOM_TRACK_DEBOUNCE_INTERVAL = 10000;
|
|
|
|
export const TIMELINE_DEBOUNCE_INTERVAL = 500;
|
|
export const TIMELINE_TICK_INTERVAL = 1000;
|