MediaWiki:Mobile.js: Unterschied zwischen den Versionen

Aus SALZBURGWIKI
Zur Navigation springen Zur Suche springen
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 1: Zeile 1:
/* Das folgende JavaScript wird für alle Nutzer der Mobilen Version geladen. */
+
/* Das folgende JavaScript wird für alle Nutzer der Mobilen Version geladen.  
 
if (document.title == "Salzburgwiki") {
 
if (document.title == "Salzburgwiki") {
 
   location.href = "https://www.sn.at/wiki/Salzburgwiki_Mobil";
 
   location.href = "https://www.sn.at/wiki/Salzburgwiki_Mobil";
}
+
}*/
var oewaPath = "Service/Verzeichnisse/LexikaGlossareEnzyklopedien/moewa/";
 
var oewaFrabo = "mo";
 
  
if (window.iom) {
+
let oewaPath = "Service/Verzeichnisse/LexikaGlossareEnzyklopedien";
var oewa_data = {
+
const isMobile = screen.width < 768
"cn":"at", // country
+
isMobile ? oewaPath + "/moewa/" : oewaPath
"st":"at_w_atsn", // sitename
+
 
"cp":oewaPath, // kategorienpfad
+
if (typeof IOMm !== "undefined") {
"sv":oewaFrabo, // Format der Befragungseinladung
+
IOMm('configure', { st: 'at_w_atsn', dn: 'data-f6693670bf.sn.at', cn: 'at', dc: 'hyb', mh: 5 })
"ps":"lin", // Privacy setting
+
IOMm('pageview', { cp: oewaPath })  
"sc":"yes"
 
};
 
iom.h(oewa_data,1);
 
 
}
 
}

Aktuelle Version vom 9. April 2024, 11:30 Uhr

/* Das folgende JavaScript wird für alle Nutzer der Mobilen Version geladen. 
if (document.title == "Salzburgwiki") {
   location.href = "https://www.sn.at/wiki/Salzburgwiki_Mobil";
}*/

let oewaPath = "Service/Verzeichnisse/LexikaGlossareEnzyklopedien"; 
const isMobile = screen.width < 768 
isMobile ? oewaPath + "/moewa/" : oewaPath 

if (typeof IOMm !== "undefined") { 
IOMm('configure', { st: 'at_w_atsn', dn: 'data-f6693670bf.sn.at', cn: 'at', dc: 'hyb', mh: 5 }) 
IOMm('pageview', { cp: oewaPath }) 
}