Merged in bugfix/MAPG-53-fix-js-exception (pull request #31)

MAPG-53 check if Core.googleLink is not null before trying to modify it
This commit is contained in:
Bence Pőcze 2020-05-22 21:33:03 +00:00
commit b7679254c7

View File

@ -298,8 +298,10 @@
}
setTimeout(function () {
Core.googleLink.title = 'Google Maps'
Core.googleLink.href = 'https://maps.google.com/maps'
if (Core.googleLink) {
Core.googleLink.title = 'Google Maps';
Core.googleLink.href = 'https://maps.google.com/maps';
}
}, 1);
},