remove throttles

This commit is contained in:
DD Liu 2017-07-27 23:05:43 -04:00
parent a42c6dc564
commit 6e27d133a8
2 changed files with 2 additions and 8 deletions

View file

@ -21,10 +21,7 @@ const reducer = function (state, action) {
reducer.changeBrushSize = function (brushSize) {
return {
type: CHANGE_BRUSH_SIZE,
brushSize: brushSize,
meta: {
throttle: 30
}
brushSize: brushSize
};
};

View file

@ -21,10 +21,7 @@ const reducer = function (state, action) {
reducer.changeBrushSize = function (brushSize) {
return {
type: CHANGE_ERASER_SIZE,
brushSize: brushSize,
meta: {
throttle: 30
}
brushSize: brushSize
};
};