MediaWiki:Common.js

Zur Navigation springen Zur Suche springen

Hinweis: Leeren Sie nach dem Speichern den Browser-Cache, um die Änderungen sehen zu können.

  • Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
  • Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
  • Internet Explorer: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
  • Opera: Gehen Sie zu Menü → Einstellungen (Opera → Einstellungen auf dem Mac) und dann auf Datenschutz & Sicherheit → Browserdaten löschen → Gespeicherte Bilder und Dateien.
var user= mw.config.get( 'wgUserGroups' );
for (var i in user)
	if (user[i] === 'sysop')
		var sysopRights = true; 
  
// Handler für toparrow 
$(window).on('scroll', function() {
 if(window.pageYOffset < $( window ).height()/2)
	$('#toparrow').hide();
 else
	$('#toparrow').show();
});
// Handler für toc
var toc= $('#toc') 
	, scroll_pos_test =  toc.offset().top + (toc.height() / 2)
	, ueberschriften = $('h2')
	, toc_li = $('#toc li')
	, ues = [];
// toggle pin
$('#toc h2').click(function() { 
	if ($('.wrap_toc'))
		$('.wrap_toc').toggleClass('pin');
});
$(window).on('scroll', function() {
	var y_scroll_pos = window.pageYOffset; 
    if( y_scroll_pos > scroll_pos_test // toc nicht mehr voll sichtbar
    && $( window ).width() > 940
    && $( window ).width() > $( window ).height()
    && $( window ).height() > toc.height() ) {
    	if(!toc.hasClass('fix_toc')) 
	    	toc.addClass('fix_toc'); 
    	if (!toc.parent().hasClass( 'wrap_toc' ) ) {  
       		toc.wrap("<div class='wrap_toc'></div>");
    	} 
    // Sichtbaren Bereich in toc markieren
		var new_ues=[];
		$('h2 .mw-headline, h3 .mw-headline').each(function() { 
			if ($(this).offset().top > y_scroll_pos
			&& $(this).offset().top < y_scroll_pos + $(window).height()/2) {
				new_ues.push($.trim($(this).text()));
				ues= new_ues;
    			$('#toc .here').removeClass('here');
				$('.toctext').each(function() {
					if (ues.indexOf($.trim($(this).text()))!== -1) {
						$(this).closest('li').addClass('here');
					}
				});
			}
    	}); 
    	if($('#toc .toplink').length === 0)
    		$("#toc > ul").prepend("<li class='toplink'><a href='#top'>[Top]</a></li>");
    } else {
       toc.removeClass('fix_toc');  
       $('#toc .here').removeClass('here');
       if ( toc.parent().hasClass( "wrap_toc" ) ) {
          toc.unwrap();
       }
       $("#toc .toplink").remove();
    }
});  
/*************************************
  Sitemap
**************************************/
 //Handler für Klick auf (+) in Sitemap

    $(document).on('click', '.sitemap .plusMinus', openOrCloseDetails);

    function openOrCloseDetails(e) {
        e.preventDefault();
        if ($(this).hasClass("close")) {
            $(this).closest('div').find('ul').hide('slow');
        } else {
            $(this).closest('div').find('ul').show('slow');
        }
        $(this).toggleClass('close');
    }  
    $(document).on('click', '#plusMinusAll',openOrCloseAll);
    function openOrCloseAll(e) {
        e.preventDefault();
        if ($(this).hasClass("close")) {
            $('.sitemap ul').hide('slow');
            $('.sitemap .plusMinus').removeClass('close');
        } else {
            $('.sitemap ul').show('slow');
            $('.sitemap .plusMinus').addClass('close');
        }
        $(this).toggleClass('close');
    } 
    //Search
    var SMsearch=  $("<div id='search3'></div>").append($('#searchform').clone().attr('id', 'searchform3')); 
    if( $('#s-container').length ){
    $('#s-container').append($(SMsearch));
    $('#searchform').hide();
    }
    
    //falsche externe links
    $('.sitemap a').removeClass('external');
    
    //Sitemap öffnen
    $('#contSitemap').hide();
    $(document).on('click', '#sitemapToggle', openOrCloseSitemap);
    function openOrCloseSitemap(e) {
        e.preventDefault();
        var scroll= $('#toggleButton').offset();
        $('#contSitemap').css({
        	top:  scroll.top+'px'
        });
        if ($(this).hasClass("close")) {
            $('#bgToggle').animate({
    			height: "2em",
    			opacity: ".2"
    			}, function() {
    				$('#bgToggle').removeAttr("style");
    				})
            $('#contSitemap').slideUp('fast');
        } else {
            $('#bgToggle').css({
            	backgroundColor: '#ccccc6'
            	})
            	.animate({
    			height: "100%",
    			opacity: ".85"
    		});
            $('#contSitemap').slideDown('fast');
        }
        $(this).toggleClass('close');
    }   
  var sitemapParent= $('.selflink').closest('[id^=p-]');
  if(wgPageName!=="Religion-in-Japan")
  $(sitemapParent).find('.plusMinus').trigger('click'); 


 //Handler für Klick auf (+) in Karten

    $('.listPlaces .plusMinus').next().hide(); 
    $(document).on('click', '.listPlaces .plusMinus', openOrClosePlaces); 
    function openOrClosePlaces(e) {
        e.preventDefault();
        if ($(this).hasClass("close")) {
            $(this).next().hide('slow');
        } else {
            $(this).next().show('slow');
        }
        $(this).toggleClass('close');
    }  
 //Handler für Klick auf (+) Bilder/Kuenstler 
    var hash = $(location).attr('hash')
    ,   hashIsArtist = 0; 
    $('.plusMinus.artists').each(function() { 
		if ('#'+$(this).attr("id") == hash) {
            $(this).addClass('close'); 
    		$(this).next().show(); 
    		hashIsArtist = 1;
		}
    });
    if(!hashIsArtist) {
    	$('.plusMinus.artists:nth-child(1)').next().show(); 
    	$('.plusMinus.artists:nth-child(1)').addClass('close');
    }
    $(document).on('click', '.plusMinus.artists', openOrCloseArtists); 
    function openOrCloseArtists(e) {
        e.preventDefault();
        if ($(this).hasClass("close")) {
            $(this).next().hide('slow');
        } else {
            $(this).next().show('slow');
        }
        $(this).toggleClass('close');
    }  
    $(document).on('click', '#plusMinusArtists',openOrCloseAllArtists);
    function openOrCloseAllArtists(e) {
        e.preventDefault();
        if ($(this).hasClass("close")) {
            $('.plusMinus.artists').next().hide('slow');
            $('.plusMinus.artists').removeClass('close');
        } else {
            $('.plusMinus.artists').next().show('slow');
            $('.plusMinus.artists').addClass('close');
        }
        $(this).toggleClass('close');
    } 
    $(document).on('click', '#plusMinusArtistsOpen',function(e){
        e.preventDefault();
    	$('.plusMinus.artists').next().show('slow'); 
    	$('.plusMinus.artists').addClass('close');
    });
    $(document).on('click', '#plusMinusArtistsClose',function(e){
        e.preventDefault();
    	$('.plusMinus.artists').next().hide('slow'); 
    	$('.plusMinus.artists').removeClass('close');
    });
 
 //Handler für Prüfungsfragen
 if(wgPageName=="Lektoren:Prüfungsfragen") {
	var questions=$('.q li').clone();
	$(document).on('click', '#q_select', dreiFragen); 
	function dreiFragen() {
		questions.sort(function(a, b){return 0.5 - Math.random()});
		$('#q_show').empty();
		$('#q_show').hide();
		$('#q_show').append($(questions[0])));
		$('#q_show').append($(questions[1]));
		$('#q_show').append($(questions[2])); 
		$('#q_show').show('slow');
		questions.splice(0, 3); //verhindern, dass Frage noch einmal kommt
	}
	$(document).on('click', '#q_select1', function() {
		questions.sort(function(a, b){return 0.5 - Math.random()});
		$('#q_show1').append($(questions[0])).hide().show('slow');
		questions.splice(0, 1); //verhindern, dass Frage noch einmal kommt
	}); 
	$(document).on('click', '#q_select li::after', function() {
		$(this).hide('slow');
	}); 
		
	$(document).on('click', '#q_all', function() {
		$('.q li').toggle();
	}); 
 }
/********************* 
	GLOSSAR 
*********************/ 

// s.a. vorlage:glossar  
$('.glossar').each(function(){
  var child = $(this).find('.g_box')
    , parent = $(this).closest('p, li, td') ; 
    
	/*
    var currentMousePos = { x: -1, y: -1 };
    $(document).mousemove(function(event) {
        currentMousePos.x = event.pageX;
        currentMousePos.y = event.pageY;
    });
  var diff = ($(this).width() - $(child).width()) / 2
    , left = $(this).position().left + diff
    , right = $(parent).width() - ($(this).position().left + $(child).width() + 14);
 
   if ( left < -10) {
     $( child).css("left", diff - left -10 + 'px'); 
   }
    if (right < 0 ) { 
     $( child).css("left", right + 'px');
   }

  */
  $( this ).click(function(){ $( child).slideToggle('slow'); });
  $( this ).mouseleave(function(){ $(child).slideUp('slow'); }); 
 
});  


 $( '.smw-ask-downloadlinks, .smw-tabs label.nav-label' ).hide();
 $( '#mw-indicator-mw-helplink' ).click(function(e){ 
 	if(sysopRights) {
 	event.preventDefault(e);
 	$('.smw-ask-downloadlinks, .smw-tabs label.nav-label').toggle('slow'); 
 	}
 }); 
/************************/

$('.copyLink').click(function(e) {
 	event.preventDefault(e);
 var $temp = $("<input>");
 $("body").append($temp);
 $temp.val($(this).find('a').html()).select();
 document.execCommand("copy");
 $temp.remove();
   });
   
 $('.copyme').click(copyToClipboard);
 
 function copyToClipboard(element) {
 var $temp = $("<input>");
 $("body").append($temp);
 $temp.val($(this).html()).select();
 document.execCommand("copy");
 $temp.remove();
}
/********************* 
	PRELOADS 
*********************/ 

if ( $( '#wpTextbox1 ').is(' :empty ') ) { 
	
/////////// preload glossar ////////////
if ( mw.config.get( 'wgCanonicalNamespace') === 'Glossar' ) { 
$( '#wpTextbox1 ').html(
  "{{glossar " + 
  "\n| stichwort = {{{1|}}} " +
  "\n| code = "+ mw.config.get( 'wgTitle' ) + " <!-- für Sonderfälle --> " +
  "\n| romaji = " + mw.config.get( 'wgTitle' ) +
  "\n| kanji = " +
  "\n| text = " +
  "\n| sprache = <!-- chin. kor. west.--> " +
  "\n| link = <!-- wichtigste Seite --> " +
  "\n| tags = <!-- Bauwerk, Bild, Fabelwesen, Geschichte, Gottheit, Kalender,  " +
  "\n            Konzept, Objekt, Ort, Person, Praxis, Schule, Text, Tier --> " +
  "\n| map= <!-- such-stichwort für google maps --> " +
  "\n| zoom= <!-- 5–19, 9 = standard --> " +
  "\n| type= <!-- satellite (maps) --> " +
  "\n| icon= <!-- Schrein oder Tempel --> " + 
  "\n}} "); 
}
/////////// preload sanskrit ////////////
if ( mw.config.get( 'wgCanonicalNamespace') === 'Skt'  ) { 
$( '#wpTextbox1 ').html( 
  "{{Sanskrit" +
  "\n| stichwort = {{{1|}}} " +
  "\n| code = "+ mw.config.get( 'wgTitle' ) + " <!-- für Sonderfälle --> " +
  "\n| sprache = skt." +
  "\n| skt_oD =  "+ mw.config.get( 'wgTitle' ) + " <!--ohne Diakritika--> " +
  "\n| skt_mD =   <!--mit Diakritika--> " +
  "\n| devanagari = " +
  "\n| geschlecht =   <!-- m, f, n --> " +
  "\n| klasse = term   <!-- term, name, text--> " +
  "\n| romaji=   <!-- jap. Äquivalent in Romaji --> " +
  "\n| kanji=   <!-- jap. Äquivalent in Kanji --> " +
  "\n| romaji2=   <!-- alternativer jap. Bff. in Romaji --> " +
  "\n| kanji2=   <!--  alternativer jap. Bff. in Kanji --> " +
  "\n| ue=   <!-- wtl. dt. Übersetzung --> " +
  "\n| anm=   <!-- sonstige Bemerkungen --> " +
  "\n| link=   <!-- Seitentitel ohne [[ ]] --> " +
  "\n| tags = <!--  Bauwerk, Bild, Fabelwesen, Geschichte, Gottheit, Kalender,  " +
  "\n|          Konzept, Objekt, Ort, Person, Praxis, Schule, Text, Tier --> " +
  "\n| map= <!-- such-stichwort für google maps --> " +
  "\n| zoom= <!-- 5–19, 6 = standard --> " +
  "\n| type= <!-- satellite, terrain --> " +
  "\n| icon= <!-- Schrein oder Tempel --> " +
  "\n}} "); 
}

/////////// preload bild ////////////
if ( mw.config.get( 'wgNamespaceNumber') === 6   ) { 
var d = new Date();
var datum = d.getFullYear()+"/"+(d.getMonth()+1)+"/"+d.getDate();
$( '#wpTextbox1 ').html(
 "{{bild " +
 "\n| titel =  " +
 "\n| detail = 0<!-- 0 oder 1 (= „Detail“) -->" +
 "\n| form= <!-- Foto, Malerei, Holzschnitt, Druck, Skulptur, sw, hand, drauf --> " +
 "\n| inhalt= <!-- Architektur, Gottheit, Fabelwesen, Natur, Objekt, Person, Portrait, Ritus, Tier --> " +
 "\n| genre = <!--Schreinhalle Tempelhalle Farbholzschnitt Hängerollbild Querbildrolle Statue Relief Photographie Zeremonie ...-->" +
 "\n| genre2 = <!-- torii, ema, matsuri, nyorai, bosatsu, daibutsu, myōō, tenbu, niō, kami, shinzō, fukujin, rakan, mandara  ... --> " +
 "\n| material = <!-- Seide, Farbe, Tusche, Holz, Metall, Papier, Bronze, bemalt  ...-->" +
 "\n| maße =  <!-- 25,5 x 19,1 cm ... Höhe: 30,2 cm -->" +
 "\n| artist= " +
 "\n| artist_vor=  <!-- westl. Vornamen -->" +
 "\n| artist_dates = " +
 "\n| zeitalter = <!-- 1= Altertum und Mittelalter 2= Neuzeit (Edo-Zeit) 3= Moderne -->" +
 "\n| periode = <!--Heian-Zeit  Kamakura-Zeit Edo-Zeit ... oder China,  Indien, Tibet ...-->" +
 "\n| jahr = <!--1432  15. Jh.  ...-->" +
 "\n| serie = <!--''japanisch'' (Ü)-->" +
 "\n| buch = <!--''japanisch'' (Ü)-->" +
 "\n| serie_j = <!--1831–32-->" +
 "\n| besitz = <!--im Besitz des ...-->" +
 "\n| treasure = 0 <!-- 0 oder 1 (= „Nationalschatz“)  -->" +
 "\n| q_link = <!-- http://... (Bildquelle) -->" +
 "\n| q_text = <!-- Linktext (Name der Quelle) -->" +
 "\n| quelle_b = <!-- Zusatztext zur Quelle -->" +
 "\n| c = © <!-- © oder 0 (wenn Copyright unklar) -->" +
 "\n| quelle_d = <!-- abgerufen  -->" + datum +
 "\n| collection = " +
 "\n| beschreibung= <!--Beschreibung-->\n" +
  "\n}} "); 
}

/////////// preload Literatur ////////////
if ( mw.config.get( 'wgCanonicalNamespace') === 'Literatur'  ) { 
	var name = wgTitle.match(/\D+/)
    , jahr = wgTitle.match(/\d+/);
$( '#wpTextbox1 ').html( 
 "{{Literatur " +
 "\n| code = " + wgTitle + " <!-- ggf. ändern! -->" +
 "\n| autor1_nat = west <!-- oder: asien --> " +
 "\n| autor1_fam =" + name +
 "\n| autor1_vor = <!-- Vorname --> " +
 "\n| autor1_kanji = " +
 "\n| autor2 = <!-- weitere/r Autor/en, vollständige Namen -->" +
 "\n| autor_zusatz = <!-- Hg Ü (kein Punkt) -->" +
 "\n| jahr = " + jahr +
 "\n| pub_form = Buch <!-- oder Zeitschrift oder Sammelband -->" +
 "\n| titel1 = <!--Haupttitel -->" +
 "\n| titel2 = <!--Untertitel -->" +
 "\n| titel_kanji = " +
 "\n| link = <!--Link zur online-Version -->" +
 "\n| sammelband_hg = <!-- bei Sammlband: Herausgeber -->" +
 "\n| sammelband_titel = <!-- bei Sammlband: Titel des Bandes-->" +
 "\n| ort = " +
 "\n| verlag =  " +
 "\n| reihe = <!-- Namen der Publikationsreihe, inkl. Bandnr. -->" +
 "\n| auflage = " +
 "\n| zeitschrift =  <!-- bei Zeitschrift: Titel und Nummer -->" +
 "\n| seiten =  <!-- bei Artikeln, z.B.: 22–44 -->" +
 "\n| bemerkung = <!-- z.B.: Erste Auflage 1897 -->" +
 "\n| bemerkung2 = {{{1|}}} " +
  "\n}} "); 
  }
} 

/***********************************
       Change redirected address line 
***********************************/
( function ( $, mw ) {
	if ( !window.history || !window.history.replaceState ) {
		return;
	}
 
	mw.loader.using( 'jquery.mwExtension', function () {
		var articlePathRE, pathQuery, path;
 
		articlePathRE = new RegExp(
			'^' +
			$.escapeRE( mw.config.get( 'wgArticlePath' ) ).replace( '\\$1', mw.config.get( 'wgArticlePath' ).indexOf( '?' ) >= -1 ? '([^?]*)' : '([^&]*)' ) +
			'$'
		);
		pathQuery = location.pathname + ( location.search ? '?' + location.search : '' );
		// Only execute on paths matching the article path (don't squash query arguments)
		if ( articlePathRE.test( pathQuery ) ) {
			path = mw.util.wikiGetlink( mw.config.get( 'wgPageName' ) );
			path += window.location.hash || '';
			window.history.replaceState( {}, document.title, path );
		}
	} );

}( jQuery, mediaWiki ) );



/*****************
    Reference Tooltips
*****************/
// See [[mw:Reference Tooltips]]; Anmerkungen mit Hover sichtbar machen
 
window.pg || $(document).ready( function($) {
 
    // Make sure we are in article, project, or help namespace
    if ( mw.config.get ( 'wgCanonicalNamespace' ) === '' 
      || mw.config.get ( 'wgCanonicalNamespace' ) === 'Project' 
      || mw.config.get ( 'wgCanonicalNamespace' ) === 'Help'   
      ) {
        function toggleRT(o){
            mw.loader.using("jquery.cookie",function(){
                    $.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90});
                    location.reload();
            })
        }
        var settings = document.cookie.split("RTsettings=")[1];
        settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
        if( settings[0] == 0 ) {
            var footer = $("#footer-places, #f-list");
            if( footer.length === 0 ) {
                    footer = $("#footer li").parent();
            }
            footer.append($("<li>").append($("<a>").text("Enable Reference Tooltips").attr("href","javascript:(function(){})()").click(function(){toggleRT(1)})));
            return;
        }
        var isTouchscreen = +settings[2],
            timerLength = isTouchscreen ? 0 : +settings[1],
            settingsMenu;
        $(".reference").each( function() {
            var tooltipNode, hideTimer, showTimer, checkFlip = false;
            function findRef( h ){
                    h = h.firstChild.getAttribute("href"); h = h && h.split("#"); h = h && h[1];
                    h = h && document.getElementById( h );
                    h = h && h.nodeName == "LI" && h;
                    return h;
            }
            function hide( refLink ){
                    if( tooltipNode && tooltipNode.parentNode == document.body ) {
                            hideTimer = setTimeout( function() {
                                    $(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) })
                            }, isTouchscreen ? 16 : 100)
                    } else {
                            var h = findRef( refLink );
                            h && (h.style.border = "");
                    }
            }
            function show(){
                    if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){
                            document.body.appendChild( tooltipNode );
                            checkFlip = true;
                    }
                    $(tooltipNode).stop().animate({opacity: 1}, 100)
                    clearTimeout( hideTimer );
            }
            function openSettingsMenu(){
                    if( settingsMenu ) {
                            settingsMenu.dialog( "open" );
                    } else {
                            settingsMenu = $("<form>").append(
                                    $("<button>").css("width","100%").text("Disable Reference Tooltips").button().click(function(){toggleRT(0)}),
                                    $("<br>"),
                                    $("<small>").text("Once disabled, Reference Tooltips can be re-enabled using a link in the footer of the page."),
                                    $("<hr>"),
                                    $("<label>").text("Delay before the tooltip appears (in milliseconds): ").append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
                                    $("<br>"),
                                    $("<span>").text("Tooltip is activated by:"),
                                    $("<label>").append(
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
                                            "hovering"
                                    ),
                                    $("<label>").append(
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
                                            "clicking"
                                    )
                            ).submit(function(e){e.preventDefault()}).dialog({modal:true,width:500,title:"Reference Tooltips options",buttons:{"Save settings":function(){
                                    var a = this.getElementsByTagName("input"),
                                            b = +a[0].value;
                                    $.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90});
                                    location.reload();
                            }}});
                    }
            }
            $(this)[ isTouchscreen ? 'click' : 'hover' ](function( e ){
                    var _this = this;
                    if( isTouchscreen ) {
                            e.preventDefault();
                            (tooltipNode && tooltipNode.parentNode == document.body) || setTimeout( function(){
                                    $( document.body ).on("click touchstart", function( e ) {
                                            e = e || event;
                                            e = e.target || e.srcElement;
                                            for( ; e && !$( e ).hasClass( "referencetooltip" ) ; )
                                                    e = e.parentNode;
                                            if( !e ){
                                                    clearTimeout( showTimer );
                                                    hide( _this );
                                                    $(document.body).off("click touchstart", arguments.callee)
                                            }
                                    })
                            }, 0);
                    }
                    showTimer && clearTimeout( showTimer );
                    showTimer = setTimeout( function() {
                            var h = findRef( _this );
                            if( !h ){return};
                            if( !isTouchscreen && ( window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 ) + $(window).height() > $( h ).offset().top + h.offsetHeight ) {
                                    h.style.border = "#080086 2px solid";
                                    return;
                            }
                            if(!tooltipNode){
                                    tooltipNode = document.createElement("ul");
                                    tooltipNode.className = "referencetooltip";
                                    var c = tooltipNode.appendChild( h.cloneNode( true ) );
                                    try {
                                            if( c.firstChild.nodeName != "A" ) {
                                                    while( c.childNodes[1].nodeName == "A" && c.childNodes[1].getAttribute( "href" ).indexOf("#cite_ref-") !== -1 ) {
                                                            do { c.removeChild( c.childNodes[1] ) } while ( c.childNodes[1].nodeValue == " " );
                                                    }
                                            }
                                    } catch (e) { mw.log(e) }
                                    c.removeChild( c.firstChild );
                                    $( tooltipNode.firstChild.insertBefore( document.createElement( "span" ), tooltipNode.firstChild.firstChild ) ).addClass("RTsettings").attr("title", "Tooltip settings").click(function(){
                                            mw.loader.using(["jquery.cookie","jquery.ui.dialog"], openSettingsMenu);
                                    })
                                    tooltipNode.appendChild( document.createElement( "li" ) );
                                    isTouchscreen || $(tooltipNode).hover(show, hide);
                            }
                            show();
                            var o = $(_this).offset(), oH = tooltipNode.offsetHeight;
                            $(tooltipNode).css({top: o.top - oH, left: o.left - 7 });
                            if( tooltipNode.offsetHeight > oH ) { // is it squished against the right side of the page?
                                    $(tooltipNode).css({left:'auto',right:0});
                                    tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px";
                            }
                            if( checkFlip ) {
                                    if( o.top < tooltipNode.offsetHeight + ( window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 ) ) { // is part of it above the top of the screen?
                                            $(tooltipNode).addClass("RTflipped").css({top: o.top + 12});
                                    } else if( tooltipNode.className === "referencetooltip RTflipped" ) { // cancel previous
                                            $(tooltipNode).removeClass("RTflipped");
                                    }
                                    checkFlip = false;
                            }
                    }, timerLength);
            }, isTouchscreen ? undefined : function(){clearTimeout(showTimer); hide(this); } )
 
        } );
 
    }
 
} );
Religion-in-JapanMediaWikiCommon.js