Skip to content

Commit db6a77f

Browse files
committed
Fix const (for scrollable pages)
1 parent eb22b6a commit db6a77f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/google_map.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ export default class GoogleMap extends Component {
650650
if (!this.mouseInMap_) return;
651651

652652
const currTime = (new Date()).getTime();
653-
const K_RECALC_CLIENT_RECT_MS = 3000;
653+
const K_RECALC_CLIENT_RECT_MS = 50;
654654

655655
if (currTime - this.mouseMoveTime_ > K_RECALC_CLIENT_RECT_MS) {
656656
this.boundingRect_ = e.currentTarget.getBoundingClientRect();

0 commit comments

Comments
 (0)