Created
January 26, 2014 08:08
-
-
Save ThomasHambach/8629961 to your computer and use it in GitHub Desktop.
Drupal 7 GMAP multi language bubble fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Search for this line (on line 92 for me) | |
if (obj.vars.rmtcallback) { | |
uri = Drupal.settings.basePath + obj.vars.rmtcallback + '/' + marker.rmt; | |
} | |
// And change it to | |
if (obj.vars.rmtcallback) { | |
uri = Drupal.settings.basePath + Drupal.settings.pathPrefix + obj.vars.rmtcallback + '/' + marker.rmt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment