MediaWiki:Mobile.js: Unterschied zwischen den Versionen

Aus FürthWiki

K (Reinitialize leaflet after each tab change. fixes #36)
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung
(fix #36)
 
Zeile 15: Zeile 15:
  * fixes #36
  * fixes #36
  */
  */
$( document ).ready(function() {
$(document).ready(function() {
  $('.tabs-tabbox .tabs-header').click(function(e) {
$('.tabs-label').click(function(e) {
    setTimeout(function() {
var mapExists = setInterval(function() {
      window.maps.leafletList.forEach(function(l) {
var counter = 0;
        l.map.invalidateSize(false);
var mapsLeafletList = window.mapsLeafletList;
      });
if (mapsLeafletList && mapsLeafletList.length) {
    }, 100);
mapsLeafletList.forEach(function(l) {
  });
if (l.map) {
l.map.invalidateSize(false);
clearInterval(mapExists);
}
});
}
if (counter++ > 10) clearInterval(mapExists);
}, 100);
});
});
});

Aktuelle Version vom 5. Mai 2021, 19:08 Uhr

if ('serviceWorker' in navigator) {
  window.addEventListener('load', function() {
    navigator.serviceWorker.register('/wiki/serviceworker.js').then(function(registration) {
      // Registration was successful
      console.log('ServiceWorker registration successful with scope: ', registration.scope);
    }, function(err) {
      // registration failed :(
      console.log('ServiceWorker registration failed: ', err);
    });
  });
}

/* *************************************************
 * Reinitialize leaflet after each tab change.
 * fixes #36
 */
$(document).ready(function() {
	$('.tabs-label').click(function(e) {
		var mapExists = setInterval(function() {
			var counter = 0;
			var mapsLeafletList = window.mapsLeafletList;
			if (mapsLeafletList && mapsLeafletList.length) {
				mapsLeafletList.forEach(function(l) {
					if (l.map) {
						l.map.invalidateSize(false);
						clearInterval(mapExists);
					}
				});
			}
			if (counter++ > 10) clearInterval(mapExists);
		}, 100);
	});
});