From cd7dc7918ccbe0200e8d86168b5f579d86c8e75f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Z=C3=A1ruba?= Date: Thu, 3 Dec 2015 10:46:47 +0100 Subject: [PATCH] fix call function --- client-side/googleMapAPI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-side/googleMapAPI.js b/client-side/googleMapAPI.js index 36c7b7b..8a0563b 100644 --- a/client-side/googleMapAPI.js +++ b/client-side/googleMapAPI.js @@ -234,7 +234,7 @@ GoogleMap.prototype = { base.map.fitBounds(base.boundsProperty); } }; - fn[functionName]; + fn[functionName](); } },