MAPG-53 check if Core.googleLink is not null before trying to modify it
This commit is contained in:
parent
4a1bb0fef6
commit
94037dda31
@ -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);
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user