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 () {
|
setTimeout(function () {
|
||||||
Core.googleLink.title = 'Google Maps'
|
if (Core.googleLink) {
|
||||||
Core.googleLink.href = 'https://maps.google.com/maps'
|
Core.googleLink.title = 'Google Maps';
|
||||||
|
Core.googleLink.href = 'https://maps.google.com/maps';
|
||||||
|
}
|
||||||
}, 1);
|
}, 1);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user