From 586726cb01af8fb7bedf8f4304580aa3760906de Mon Sep 17 00:00:00 2001 From: Konstantin Krassmann Date: Tue, 16 Apr 2019 14:49:31 +0200 Subject: [PATCH] Fix info-window problems Fix https://github.com/allenhwkim/angularjs-google-maps/issues/882 --- directives/info-window.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/directives/info-window.js b/directives/info-window.js index 6233b7169..59a1481dd 100644 --- a/directives/info-window.js +++ b/directives/info-window.js @@ -113,7 +113,8 @@ } $timeout(function() { // to avoid racing condition var infoWindowContainerEl = infoWindow.content.parentElement.parentElement.parentElement; - infoWindowContainerEl.className = "ng-map-info-window"; + // Fehler der Google API! https://github.com/allenhwkim/angularjs-google-maps/issues/882 + //infoWindowContainerEl.className = "ng-map-info-window"; }); }); });