User:I9606/swl viewer.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:I9606/swl viewer. |
// User scripts
//operates on the edit page
//operates on pages where it can find semantic wiki links
$(document).ready(function(){
var subject = document.title.split("-")[0];
var timer;
//<span class="swl" id="Phospholamban--substrate_for--protein_kinase_A">
//<span class="substrate"><a href="/wiki/Protein_kinase_A" title="Protein kinase A">
//<span title="Phospholamban substrate for PKA" style="border-bottom:1px dotted orange">protein kinase A</span>
//</a></span></span>
//When you mouse over a SWL indicated by its 'swl' class, get and show the elelements of the link
$(function() {
$(".swl").hover(function() {
var predicate = ""; var object = "";
//add the holders and set ids for them
//add the info box holder
//in case they use spaces it will get wacky
var classList =$("span",this).attr('class').split(/\s+/);
$.each( classList, function(index, item){
predicate += item+" ";
});
predicate = $.trim(predicate);
//get semantic information out
object = $("a",this).attr('title');
var link = "<a href=\"http://wiki.riteme.site/wiki/Category:SWL/"+predicate+"\">"+predicate+"</a>";
//display add the information box
$(this).append('<span id="popup_swl" class="popup_block">'+ subject +" "+link+" " + object +' <a href="#" class="close">(close)</a></span>');
//add a delay
if(timer) {
clearTimeout(timer);
timer = null
}
timer = setTimeout(function() {
//Fade in Background to hide page
//render a clickable pop up window
//$('#fade').css({'filter' : 'alpha(opacity=.95)'}).fadeIn();
//$('body').append('<div id="fade"></div>');
$("#popup_swl").css({'filter' : 'alpha(opacity=10)'}).fadeIn();
$("#popup_swl").position({ top: 10, left: 30 });
//finish timer, set time to wait
}, 1500)
},
//handle mouse out
function () {
// $("#popup_swl").hide();
}
);
//Close Popups and Fade Layer , body
$('a.close').live('click', function() { //When clicking on the close or fade layer...
$('#fade , .popup_block').fadeOut(function() {
$('#fade, a.close').remove(); //fade them both out
$("#popup_swl").remove();
});
return false;
});
});
});