Bureaucrats, editor, Interface administrators, Administrators (Semantic MediaWiki), Curators (Semantic MediaWiki), Editors (Semantic MediaWiki), Administrators
47,327
edits
No edit summary Tag: Reverted |
No edit summary Tag: Manual revert |
||
Line 1:
$(function () {
$('.gemw-button.secondary').each(function(i,e){
var txt = $(e).find('a').text();
var href = $(e).find('a').attr('href');
var button = new OO.ui.ButtonWidget({
label: txt,
title: href,
href: href
});
$(e).parent().append(button.$element);
$(e).remove();
});
var exchangeOverlay = $('<div>');
exchangeOverlay
.css({position: 'relative', 'z-index': 100})
.attr('id', 'rsw-exchange-overlay')
.appendTo('body');
})
|