increase debounce wait time

This commit is contained in:
Colin Megill
2018-03-02 09:23:44 -08:00
parent 5443f25e69
commit f8492d964b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ const _drawGraphUsingRenderQueue = (
return _renderGraphWithFunctionReturnedByQueue;
}
export const drawGraphUsingRenderQueue = _.debounce(_drawGraphUsingRenderQueue, 20);
export const drawGraphUsingRenderQueue = _.debounce(_drawGraphUsingRenderQueue, 100);
const setupGraphBrush = (
svg,
@@ -84,4 +84,4 @@ export const drawScatterplotCanvasUsingRenderQueue = (
}
export default _.debounce(drawScatterplotCanvasUsingRenderQueue, 50)
export default _.debounce(drawScatterplotCanvasUsingRenderQueue, 100)