Compare commits

...

1 Commits

Author SHA1 Message Date
84cdb84c1b MAPG-123 [WIP] use MutationObserver 2020-06-14 22:05:41 +02:00

View File

@ -336,7 +336,10 @@
},
rewriteGoogleLink: function () {
if (!Game.googleLink) {
if (Game.googleLink) {
return;
}
var anchors = document.getElementById('panorama').getElementsByTagName('a');
for (var i = 0; i < anchors.length; i++) {
var a = anchors[i];
@ -345,14 +348,22 @@
break;
}
}
if (!Game.googleLink) {
return;
}
setTimeout(function () {
if (Game.googleLink) {
var observer = new MutationObserver(function(mutationsList, observer) {
for (let mutation of mutationsList) {
if (mutation.attributeName === 'href' && Game.googleLink.href !== 'https://maps.google.com/maps') {
console.log(Game.googleLink.href + ' is changed.')
Game.googleLink.title = 'Google Maps';
Game.googleLink.href = 'https://maps.google.com/maps';
}
}, 1);
}
});
observer.observe(Game.googleLink, { attributes: true });
}
};
@ -425,10 +436,6 @@
Game.rewriteGoogleLink();
});
Game.panorama.addListener('pov_changed', function () {
Game.rewriteGoogleLink();
});
Game.initialize();
document.getElementById('showGuessButton').onclick = function () {