잔글편집 요약 없음 |
잔글편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
/* 주석 말풍선 | |||
* from [[en:MediaWiki:Gadget-ReferenceTooltips.js]] | |||
*/ | |||
// See [[mw:Reference Tooltips]] | // See [[mw:Reference Tooltips]] | ||
window.pg || $(document).ready( function($) { | |||
window.pg || $(function() { | |||
// Make sure we are in article, project, or help namespace | // Make sure we are in article, project, or help namespace | ||
if ( | if ( mw.config.get( 'wgCanonicalNamespace' ) === '' || mw.config.get( 'wgCanonicalNamespace' ) === 'Project' || mw.config.get( 'wgCanonicalNamespace' ) === 'Help' ) { | ||
function toggleRT(o){ | function toggleRT(o){ | ||
mw.loader.using("jquery.cookie",function(){ | mw.loader.using("jquery.cookie",function(){ | ||
$.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90}); | $.cookie("RTsettings",o+"|"+ settings[1] + "|" + settings[2], {path:"/",expires:90}); | ||
location.reload(); | location.reload(); | ||
}) | }) | ||
} | } | ||
var settings = document.cookie.split("RTsettings=")[1]; | var settings = document.cookie.split("RTsettings=")[1]; | ||
31번째 줄: | 21번째 줄: | ||
footer = $("#footer li").parent(); | footer = $("#footer li").parent(); | ||
} | } | ||
footer.append($("<li>").append( | footer.append($("<li>").append($("<a>").text("주석 말풍선 켜기").attr("href","javascript:(function(){})()").click(function(){toggleRT(1)}))); | ||
return; | return; | ||
} | } | ||
46번째 줄: | 28번째 줄: | ||
settingsMenu; | settingsMenu; | ||
$(".reference").each( function() { | $(".reference").each( function() { | ||
var tooltipNode, hideTimer, showTimer | var tooltipNode, hideTimer, showTimer; | ||
function findRef( h ){ | function findRef( h ){ | ||
h = h.firstChild | h = h.firstChild.getAttribute("href"); h = h && h.split("#"); h = h && h[1]; | ||
h = h && document.getElementById( h ); | h = h && document.getElementById( h ); | ||
h = h && h.nodeName == "LI" && h; | h = h && h.nodeName == "LI" && h; | ||
return h; | return h; | ||
} | } | ||
function hide( refLink ) { | function hide( refLink ){ | ||
if( tooltipNode && tooltipNode.parentNode == document.body ) { | if( tooltipNode && tooltipNode.parentNode == document.body ) { | ||
hideTimer = setTimeout( function() { | hideTimer = setTimeout( function() { | ||
$(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) }) | $(tooltipNode).animate({opacity: 0}, 100, function(){ document.body.removeChild( tooltipNode ) }) | ||
}, isTouchscreen ? 16 : 100) | }, isTouchscreen ? 16 : 100) | ||
} else { | } else { | ||
var h = findRef( refLink ); | |||
h && (h.style.border = ""); | |||
} | } | ||
} | } | ||
65번째 줄: | 48번째 줄: | ||
if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){ | if( !tooltipNode.parentNode || tooltipNode.parentNode.nodeType === 11 ){ | ||
document.body.appendChild( tooltipNode ); | document.body.appendChild( tooltipNode ); | ||
} | } | ||
$(tooltipNode).stop().animate({opacity: 1}, 100) | $(tooltipNode).stop().animate({opacity: 1}, 100) | ||
clearTimeout( hideTimer ); | clearTimeout( hideTimer ); | ||
} | } | ||
74번째 줄: | 56번째 줄: | ||
settingsMenu.dialog( "open" ); | settingsMenu.dialog( "open" ); | ||
} else { | } else { | ||
settingsMenu = $("<form>") | settingsMenu = $("<form>").append( | ||
$("<button>").css("width","100%").text("주석 말풍선 끄기").button().click(function(){toggleRT(0)}), | |||
$("<button>").css("width","100%").text | "<br>", | ||
$("<small>").text("주석 말풍선 기능을 끄면, 이 기능을 문서 아래에 있는 링크를 통해 다시 켤 수 있습니다."), | |||
"<hr>", | |||
$("<label>").text("말풍선을 띄울 때까지 걸릴 시간 (밀리초 단위): ").append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})), | |||
"<br>", | |||
$("<small>").text( | $("<span>").text("말풍선을 띄울 방법:"), | ||
$("<label>").text( | |||
$("<span>").text | |||
$("<label>").append( | $("<label>").append( | ||
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}), | $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}), | ||
"갖다 대기" | |||
), | ), | ||
$("<label>").append( | $("<label>").append( | ||
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}), | $("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}), | ||
"클릭하기" | |||
) | ) | ||
).submit(function(e){e.preventDefault()}).dialog({modal:true,width:500,title:"주석 말풍선 설정",buttons:{"설정 저장하기":function(){ | |||
var a = this.getElementsByTagName("input"), | var a = this.getElementsByTagName("input"), | ||
b = +a[0].value; | b = +a[0].value; | ||
$.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90}); | $.cookie("RTsettings","1|"+ (b > -1 && b < 5001 ? b : settings[1]) + (a[1].checked ? "|0" : "|1"), {path:"/",expires:90}); | ||
location.reload(); | location.reload(); | ||
}}}); | |||
} | } | ||
} | } | ||
function | $(this)[ isTouchscreen ? 'click' : 'hover' ](function( e ){ | ||
var _this = this; | var _this = this; | ||
if( isTouchscreen ) { | if( isTouchscreen ) { | ||
e.preventDefault(); | e.preventDefault(); | ||
120번째 줄: | 88번째 줄: | ||
e = e || event; | e = e || event; | ||
e = e.target || e.srcElement; | e = e.target || e.srcElement; | ||
for( ; e && | for( ; e && e.className!="referencetooltip"; ) | ||
e = e.parentNode; | e = e.parentNode; | ||
if( !e ){ | if( !e ){ | ||
clearTimeout( showTimer ); | clearTimeout( showTimer ); | ||
hide( _this ); | hide( _this ); | ||
$(document.body).off("click touchstart", arguments.callee) | $(document.body).off("click touchstart", arguments.callee) | ||
} | } | ||
}) | }) | ||
}, 0); | }, 0); | ||
} | } | ||
showTimer && clearTimeout( showTimer ); | showTimer && clearTimeout( showTimer ); | ||
showTimer = setTimeout( function() { | showTimer = setTimeout( function() { | ||
var h = findRef( _this ); | var h = findRef( _this ); | ||
if( !h ){return} | 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; | return; | ||
} | } | ||
144번째 줄: | 109번째 줄: | ||
tooltipNode = document.createElement("ul"); | tooltipNode = document.createElement("ul"); | ||
tooltipNode.className = "referencetooltip"; | tooltipNode.className = "referencetooltip"; | ||
var c = tooltipNode.appendChild | var c = tooltipNode.appendChild( h.cloneNode( true ) ); | ||
try { | try { | ||
if( c.firstChild.nodeName != "A" ) { | if( c.firstChild.nodeName != "A" ) { | ||
153번째 줄: | 118번째 줄: | ||
} catch (e) { mw.log(e) } | } catch (e) { mw.log(e) } | ||
c.removeChild( c.firstChild ); | c.removeChild( c.firstChild ); | ||
$( tooltipNode.firstChild.insertBefore( document.createElement( "span" ), tooltipNode.firstChild.firstChild ) ).addClass("RTsettings").attr("title", | $( tooltipNode.firstChild.insertBefore( document.createElement( "span" ), tooltipNode.firstChild.firstChild ) ).addClass("RTsettings").attr("title", "말풍선").click(function(){ | ||
mw.loader.using(["jquery.cookie","jquery.ui"], openSettingsMenu); | mw.loader.using(["jquery.cookie","jquery.ui.dialog"], openSettingsMenu); | ||
}) | }) | ||
tooltipNode.appendChild( document.createElement( "li" ) ); | tooltipNode.appendChild( document.createElement( "li" ) ); | ||
isTouchscreen || $(tooltipNode). | isTouchscreen || $(tooltipNode).hover(show, hide); | ||
} | } | ||
show(); | show(); | ||
166번째 줄: | 131번째 줄: | ||
tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px"; | tooltipNode.lastChild.style.marginLeft = (o.left - tooltipNode.offsetLeft) + "px"; | ||
} | } | ||
if( o.top < tooltipNode.offsetHeight ) { // is it above the top of the page? | |||
$(tooltipNode).addClass("RTflipped").css({top: o.top + 12}); | |||
} else if( tooltipNode.className === "referencetooltip RTflipped" ) { // cancel previous | |||
$(tooltipNode).removeClass("RTflipped"); | |||
} | } | ||
}, timerLength); | }, timerLength); | ||
} | }, isTouchscreen ? undefined : function(){clearTimeout(showTimer); hide(this); } ) | ||
} ); | |||
} ); | |||
} | } | ||
} ); | } ); |
2019년 12월 26일 (목) 20:45 판
/* 주석 말풍선
* from [[en:MediaWiki:Gadget-ReferenceTooltips.js]]
*/
// See [[mw:Reference Tooltips]]
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("주석 말풍선 켜기").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;
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 );
}
$(tooltipNode).stop().animate({opacity: 1}, 100)
clearTimeout( hideTimer );
}
function openSettingsMenu(){
if( settingsMenu ) {
settingsMenu.dialog( "open" );
} else {
settingsMenu = $("<form>").append(
$("<button>").css("width","100%").text("주석 말풍선 끄기").button().click(function(){toggleRT(0)}),
"<br>",
$("<small>").text("주석 말풍선 기능을 끄면, 이 기능을 문서 아래에 있는 링크를 통해 다시 켤 수 있습니다."),
"<hr>",
$("<label>").text("말풍선을 띄울 때까지 걸릴 시간 (밀리초 단위): ").append($("<input>").attr({"type":"number","value":settings[1],step:50,min:0,max:5000})),
"<br>",
$("<span>").text("말풍선을 띄울 방법:"),
$("<label>").append(
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==0&&"checked", "disabled":"ontouchstart" in document.documentElement&&"disabled"}),
"갖다 대기"
),
$("<label>").append(
$("<input>").attr({"type":"radio", "name":"RTActivate", "checked":settings[2]==1&&"checked"}),
"클릭하기"
)
).submit(function(e){e.preventDefault()}).dialog({modal:true,width:500,title:"주석 말풍선 설정",buttons:{"설정 저장하기":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.className!="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", "말풍선").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( o.top < tooltipNode.offsetHeight ) { // is it above the top of the page?
$(tooltipNode).addClass("RTflipped").css({top: o.top + 12});
} else if( tooltipNode.className === "referencetooltip RTflipped" ) { // cancel previous
$(tooltipNode).removeClass("RTflipped");
}
}, timerLength);
}, isTouchscreen ? undefined : function(){clearTimeout(showTimer); hide(this); } )
} );
}
} );