操作

MediaWiki

「Gadget-ReferenceTooltips.js」の版間の差分

 
1行目: 1行目:
// ________________________________________________________________________________________
+
// See [[mw:Reference Tooltips]]
// | |
+
// Source https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js
// | === WARNING: GLOBAL GADGET FILE === |
 
// | Changes to this page affect many users. |
 
// | Please discuss changes on the talk page or on [[Wikipedia_talk:Gadget]] before editing.|
 
// |________________________________________________________________________________________|
 
//
 
// Imported from [[w:en:MediaWiki:Gadget-ReferenceTooltips.js]], the version as of 14:59, 29 October 2012 (UTC)
 
// Displays references in tooltips, see [[mw:Reference Tooltips]]
 
// ________________________________________________________________________________________
 
// | |
 
// | === 注意 サイト全体に影響するファイルです === |
 
// | このページを変更すると多数の利用者にその影響が及びます |
 
// | 変更する前に[[Wikipedia‐ノート:ガジェット]] でよく議論し、動作テストを行ってください。 |
 
// |________________________________________________________________________________________|
 
//
 
// このガジェットは [[w:en:MediaWiki:Gadget-ReferenceTooltips.js]] から14:59, 29 October 2012 (UTC)に取り込んだものです。
 
// 脚注をツールチップ内に表示する、詳細は[[mw:Reference Tooltips]]を参照してください。
 
//
 
// メッセージは[[User:Marine-Blue]]が日本語化しました。
 
  
window.pg || $(document).ready( function($) {
+
window.pg || $(function() {
+
 
function toggleRT(o){
+
    // Make sure we are in article, project, or help namespace
mw.loader.using("jquery.cookie",function(){
+
    if ( $.inArray(mw.config.get('wgCanonicalNamespace'), [ "", "Project", "Help", "Draft" ]) !== -1 ) {
$.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90});
+
mw.messages.set( {
location.reload();
+
"RT-enable" : "Enable Reference Tooltips",
});
+
"RT-disable" : "Disable Reference Tooltips",
}
+
"RT-disablenote" : "Once disabled, Reference Tooltips can be re-enabled using a link in the footer of the page.",
var settings = document.cookie.split("RTsettings=")[1];
+
"RT-delay" : "Delay before the tooltip appears (in milliseconds): ",
settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
+
"RT-activationmethod" : "Tooltip is activated by:",
if( settings[0] == 0 ) {
+
"RT-hovering" : "hovering",
var footer = $("#footer-places, #f-list");
+
"RT-clicking" : "clicking",
if( footer.length === 0 ) {
+
"RT-options" : "Reference Tooltips options",
footer = $("#footer li").parent();
+
"RT-options-save" : "Save settings",
}
+
"RT-settings" :"Tooltip settings"
+
} );
return;
+
        function toggleRT(o){
}
+
            mw.loader.using("jquery.cookie",function(){
var isTouchscreen = +settings[2],
+
                    $.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90});
timerLength = isTouchscreen ? 0 : +settings[1],
+
                    location.reload();
settingsMenu;
+
            });
$(".reference").each( function() {
+
        }
var tooltipNode, hideTimer, showTimer, checkFlip = false;
+
        var settings = document.cookie.split("RTsettings=")[1];
function findRef( h ){
+
        settings = settings ? settings.split(";")[0].split("%7C") : [1, 200, +("ontouchstart" in document.documentElement)];
h = h.firstChild.getAttribute("href"); h = h && h.split("#"); h = h && h[1];
+
        if( settings[0] == 0 ) {
h = h && document.getElementById( h );
+
            var footer = $("#footer-places, #f-list");
h = h && h.nodeName == "LI" && h;
+
            if( footer.length === 0 ) {
return h;
+
                    footer = $("#footer li").parent();
}
+
            }
function hide( refLink ){
+
            footer.append($("<li>").append(
if( tooltipNode && tooltipNode.parentNode == document.body ) {
+
            $("")
hideTimer = setTimeout( function() {
+
            .text( mw.message( "RT-enable" ) )
$(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) });
+
            .attr("href","")
}, isTouchscreen ? 16 : 100);
+
            .click(function(e){
} else {
+
            e.preventDefault();
var h = findRef( refLink );
+
            toggleRT(1);
h && (h.style.border = "");
+
            })
}
+
            ));
}
+
            return;
function show(){
+
        }
if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){
+
        var isTouchscreen = +settings[2],
document.body.appendChild( tooltipNode );
+
            timerLength = isTouchscreen ? 0 : +settings[1],
checkFlip = true;
+
            settingsMenu;
}
+
        $(".reference").each( function() {
$(tooltipNode).stop().animate({opacity: 1}, 100);
+
            var tooltipNode, hideTimer, showTimer, checkFlip = false;
clearTimeout( hideTimer );
+
            function findRef( h ){
}
+
                    h = h.firstChild; h = h && h.getAttribute && h.getAttribute("href"); h = h && h.split("#"); h = h && h[1];
function openSettingsMenu(){
+
                    h = h && document.getElementById( h );
if( settingsMenu ) {
+
                    h = h && h.nodeName == "LI" && h;
settingsMenu.dialog( "open" );
+
                    return h;
} else {
+
            }
settingsMenu = $("<form>").append(
+
            function hide( refLink ) {
$("<button>").css("width","100%").text("脚注ツールチップを無効にする").button().click(function(){toggleRT(0)}),
+
                    if( tooltipNode && tooltipNode.parentNode == document.body ) {
$("<br>"),
+
                            hideTimer = setTimeout( function() {
$("<small>").text("ツールチップを一度無効にした場合、ページのフッターにあるリンクから再度有効に出来ます。"),
+
                                    $(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) });
$("<hr>"),
+
                            }, isTouchscreen ? 16 : 100);
$("<label>").text("ツールチップを表示するまでの秒数 (ミリ秒): ").append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
+
                    } else {
$("<br>"),
+
                            $( findRef( refLink ) ).removeClass("RTTarget");
$("<span>").text("ツールチップを表示するタイミング:"),
+
                    }
$("<label>").append(
+
            }
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
+
            function show(){
"マウスをかざしたとき"
+
                    if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){
),
+
                            document.body.appendChild( tooltipNode );
$("<label>").append(
+
                            checkFlip = true;
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
+
                    }
"クリックしたとき"
+
                    $(tooltipNode).stop().animate({opacity: 1}, 100);
)
+
                    clearTimeout( hideTimer );
).submit(function(e){e.preventDefault()}).dialog({modal:true,width:500,title:"脚注ツールチップの設定",buttons:{"設定を保存する":function(){
+
            }
var a = this.getElementsByTagName("input"),
+
            function openSettingsMenu(){
b = +a[0].value;
+
                    if( settingsMenu ) {
$.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90});
+
                            settingsMenu.dialog( "open" );
location.reload();
+
                    } else {
}}});
+
                            settingsMenu = $("<form>")
}
+
                            .append(
}
+
                                    $("<button>").css("width","100%").text( mw.msg( "RT-disable", mw.user ) ).button().click(function(e){
$(this)[ isTouchscreen ? 'click' : 'hover' ](function( e ){
+
                                    e.preventDefault();
var _this = this;
+
                                    toggleRT(0);
if( isTouchscreen ) {
+
                                    }),
e.preventDefault();
+
                                    $("<br>"),
(tooltipNode && tooltipNode.parentNode == document.body) || setTimeout( function(){
+
                                    $("<small>").text( mw.msg( "RT-disablenote") ),
$( document.body ).on("click touchstart", function( e ) {
+
                                    $("<hr>"),
e = e || event;
+
                                    $("<label>").text( mw.msg( "RT-delay" ) ).append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
e = e.target || e.srcElement;
+
                                    $("<br>"),
for( ; e && !$( e ).hasClass( "referencetooltip" ) ; )
+
                                    $("<span>").text( mw.msg( "RT-activationmethod", mw.user ) ),
e = e.parentNode;
+
                                    $("<label>").append(
if( !e ){
+
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
clearTimeout( showTimer );
+
                                            mw.msg( "RT-hovering", mw.user )
hide( _this );
+
                                    ),
$(document.body).off("click touchstart", arguments.callee);
+
                                    $("<label>").append(
}
+
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
});
+
                                            mw.msg( "RT-clicking", mw.user )
}, 0);
+
                                    )
}
+
                            )
showTimer && clearTimeout( showTimer );
+
                            .submit(function(e){e.preventDefault()})
showTimer = setTimeout( function() {
+
                            .dialog({
var h = findRef( _this );
+
                            modal:true,
if( !h ){return}
+
                            width:500,
if( !isTouchscreen && ( window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 ) + $(window).height() > $( h ).offset().top + h.offsetHeight ) {
+
                            title: mw.msg( "RT-options" ),
h.style.border = "#080086 2px solid";
+
                            buttons:[ { text: mw.msg( "RT-options-save", mw.user ), click: function(){
return;
+
                                    var a = this.getElementsByTagName("input"),
}
+
                                            b = +a[0].value;
if(!tooltipNode){
+
                                    $.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90});
tooltipNode = document.createElement("ul");
+
                                    location.reload();
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 ) {
+
            $(this)[ isTouchscreen ? 'click' : 'hover' ](function( e ){
do { c.removeChild( c.childNodes[1] ) } while ( c.childNodes[1].nodeValue == " " );
+
                    var _this = this;
}
+
                    if( window.pg ) {
}
+
                    return;
} catch (e) { mw.log(e) }
+
                    }
c.removeChild( c.firstChild );
+
                    if( isTouchscreen ) {
$( tooltipNode.firstChild.insertBefore( document.createElement( "span" ), tooltipNode.firstChild.firstChild ) ).addClass("RTsettings").attr("title", "ツールチップの設定").click(function(){
+
                            e.preventDefault();
mw.loader.using(["jquery.cookie","jquery.ui.dialog"], openSettingsMenu);
+
                            (tooltipNode && tooltipNode.parentNode == document.body) || setTimeout( function(){
});
+
                                    $( document.body ).on("click touchstart", function( e ) {
tooltipNode.appendChild( document.createElement( "li" ) );
+
                                            e = e || event;
isTouchscreen || $(tooltipNode).hover(show, hide);
+
                                            e = e.target || e.srcElement;
}
+
                                            for( ; e && !$( e ).hasClass( "referencetooltip" ) ; )
show();
+
                                                    e = e.parentNode;
var o = $(_this).offset(), oH = tooltipNode.offsetHeight;
+
                                            if( !e ){
$(tooltipNode).css({top: o.top - oH, left: o.left - 7 });
+
                                                    clearTimeout( showTimer );
if( tooltipNode.offsetHeight > oH ) { // is it squished against the right side of the page?
+
                                                    hide( _this );
$(tooltipNode).css({left:'auto',right:0});
+
                                                    $(document.body).off("click touchstart", arguments.callee);
tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px";
+
                                            }
}
+
                                    });
if( checkFlip ) {
+
                            }, 0);
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});
+
                    hideTimer && clearTimeout( hideTimer );
} else if( tooltipNode.className === "referencetooltip RTflipped" ) { // cancel previous
+
                    showTimer && clearTimeout( showTimer );
$(tooltipNode).removeClass("RTflipped");
+
                    showTimer = setTimeout( function() {
}
+
                            var h = findRef( _this );
checkFlip = false;
+
                            if( !h ){return}
}
+
                            var windowTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
}, timerLength);
+
                                    hOffsetTop = $( h ).offset().top;
}, isTouchscreen ? undefined : function(){clearTimeout(showTimer); hide(this); } );
+
                            if( !isTouchscreen && windowTop < hOffsetTop && windowTop + $(window).height() > hOffsetTop + h.offsetHeight ) {
 +
                                    $( h ).addClass("RTTarget");
 +
                                    return;
 +
                            }
 +
                            if(!tooltipNode){
 +
                                    tooltipNode = document.createElement("ul");
 +
                                    tooltipNode.className = "referencetooltip";
 +
                                    var c = tooltipNode.appendChild( $( h ).clone( true )[ 0 ] );
 +
                                    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", mw.msg( "RT-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); } );
 +
 +
        } );
 +
       
 +
    }
  
} );
 
 
 
} );
 
} );

2017年10月29日 (日) 23:02時点における最新版

// See [[mw:Reference Tooltips]]
// Source https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js

window.pg || $(function() {

    // Make sure we are in article, project, or help namespace
    if ( $.inArray(mw.config.get('wgCanonicalNamespace'), [ "", "Project", "Help", "Draft" ]) !== -1 ) {
		mw.messages.set( {
			"RT-enable" : "Enable Reference Tooltips",
			"RT-disable" : "Disable Reference Tooltips",
			"RT-disablenote" : "Once disabled, Reference Tooltips can be re-enabled using a link in the footer of the page.",
			"RT-delay" : "Delay before the tooltip appears (in milliseconds): ",
			"RT-activationmethod" : "Tooltip is activated by:",
			"RT-hovering" : "hovering",
			"RT-clicking" : "clicking",
			"RT-options" : "Reference Tooltips options",
			"RT-options-save" : "Save settings",
			"RT-settings" :"Tooltip settings"
		} );
        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(
            	$("")
            		.text( mw.message( "RT-enable" ) )
            		.attr("href","")
            		.click(function(e){
            			e.preventDefault();
            			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; h = h && h.getAttribute && h.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 {
                            $( findRef( refLink ) ).removeClass("RTTarget");
                    }
            }
            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( mw.msg( "RT-disable", mw.user ) ).button().click(function(e){
                                    		e.preventDefault();
                                    		toggleRT(0);
	                                    }),
                                    $("<br>"),
                                    $("<small>").text( mw.msg( "RT-disablenote") ),
                                    $("<hr>"),
                                    $("<label>").text( mw.msg( "RT-delay" ) ).append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
                                    $("<br>"),
                                    $("<span>").text( mw.msg( "RT-activationmethod", mw.user ) ),
                                    $("<label>").append(
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
                                            mw.msg( "RT-hovering", mw.user )
                                    ),
                                    $("<label>").append(
                                            $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
                                            mw.msg( "RT-clicking", mw.user )
                                    )
                            	)
                            .submit(function(e){e.preventDefault()})
                            .dialog({
                            	modal:true,
                            	width:500,
                            	title: mw.msg( "RT-options" ),
                            	buttons:[ { text: mw.msg( "RT-options-save", mw.user ), click: 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( window.pg ) {
                    	return;
                    }
                    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);
                    }
                    hideTimer && clearTimeout( hideTimer );
                    showTimer && clearTimeout( showTimer );
                    showTimer = setTimeout( function() {
                            var h = findRef( _this );
                            if( !h ){return}
                            var windowTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
                                    hOffsetTop = $( h ).offset().top;
                            if( !isTouchscreen && windowTop < hOffsetTop && windowTop + $(window).height() > hOffsetTop + h.offsetHeight ) {
                                    $( h ).addClass("RTTarget");
                                    return;
                            }
                            if(!tooltipNode){
                                    tooltipNode = document.createElement("ul");
                                    tooltipNode.className = "referencetooltip";
                                    var c = tooltipNode.appendChild( $( h ).clone( true )[ 0 ] );
                                    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", mw.msg( "RT-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); } );
 
        } );
        
    }

} );