MediaWiki:Citizen.js: Difference between revisions

MediaWiki interface page
(Blanked the page)
Tag: Blanking
No edit summary
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
$(document).ready(function() {
  +
setTimeout(function() {
  +
if (mw.user.isAnon()) {
  +
var elements = $('.cs-header > .oo-ui-widget-disabled');
  +
elements.each(function() {
  +
var $element = $(this);
  +
var loginMessage = '<p style="cs-custom-login-prompt">Please <a href="/wiki/Special:UserLogin">login</a> or <a href="/wiki/Special:CreateAccount">sign up</a> to continue.</p>';
  +
$element.after(loginMessage);
  +
});
  +
}
  +
}, 250);
  +
});

Latest revision as of 01:31, 15 October 2023

$(document).ready(function() {
    setTimeout(function() {
        if (mw.user.isAnon()) {
            var elements = $('.cs-header > .oo-ui-widget-disabled');
            elements.each(function() {
                var $element = $(this);
                var loginMessage = '<p style="cs-custom-login-prompt">Please <a href="/wiki/Special:UserLogin">login</a> or <a href="/wiki/Special:CreateAccount">sign up</a> to continue.</p>';
                $element.after(loginMessage);
            });
        }
    }, 250);
});