MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
(Work on .redditlink) |
(Work on .redditlink) |
||
Line 4: | Line 4: | ||
var html = $('span.reddit_button').html(); | var html = $('span.reddit_button').html(); | ||
$('.redditlink').replaceWith(html); | $('.redditlink').replaceWith(html); | ||
$('span.reddit_button').replaceWith(''); | |||
},1000); | },1000); | ||
Revision as of 20:31, June 17, 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"); } } } }); $('span.hex-snippet span[title!=""]').qtip({ style: { classes: 'qtip-tipsy' }, content: { title: function(event, api) { return $(this).attr('data-title'); } } }); });