MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
(Only load qtip if qtip is defined) |
(Fix bug) |
||
Line 38: | Line 38: | ||
} | } | ||
}); | }); | ||
} | |||
}); | }); |
Revision as of 19:36, June 20, 2016
$(document).ready(function(){ $('.redditlink').append('<script type="text/javascript" src="http://www.reddit.com/buttonlite.js?i=5"></script>'); setTimeout(function(){ var html = $('span.reddit_button').html(); $('.redditlink').replaceWith(html); $('span.reddit_button').replaceWith(''); },1000); $('span.hover-link').hover(function(e){ var classes = $(this).attr("class").split(/\s+/); for (var i=0; i<classes.length; i++) { if (classes[i].indexOf("link-") != -1) { if (e.type == "mouseenter") { $("span."+classes[i]).addClass("hover"); } else if (e.type == "mouseleave") { $("span."+classes[i]).removeClass("hover"); } } } }); if (typeof $('span.hex-snippet span[title!=""]').qtip !== 'undefined') { $('span.hex-snippet span[title!=""]').qtip({ style: { classes: 'qtip-tipsy' }, content: { title: function(event, api) { return $(this).attr('data-title'); } } }); } });