mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 10:11:03 +00:00
Moved nodes-chart-zoom. Moved zoomCache to global state. Moved nodes-chart-focus. Fixed some bugs and polished the code. Keeping track of topology options in zoomCache. Fixed forceRelayout and circular layout. Unified graph complexity heuristic criterion.
8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
/* Intervals in ms */
|
|
export const API_INTERVAL = 30000;
|
|
export const TOPOLOGY_INTERVAL = 5000;
|
|
|
|
export const TABLE_ROW_FOCUS_DEBOUNCE_INTERVAL = 10;
|
|
export const VIEWPORT_RESIZE_DEBOUNCE_INTERVAL = 200;
|
|
export const ZOOM_CACHE_DEBOUNCE_INTERVAL = 500;
|