Content deleted Content added
replace this with a notification that the script is deprecated, per the Persondata RfC and per this suggestion on my talk page |
Maintenance: mw:RL/MGU - Remove use of redundant module |
||
(One intermediate revision by one other user not shown) | |||
Line 4:
mw.loader.using( [
'mediawiki.jqueryMsg',
'mediawiki.util',
Line 34 ⟶ 33:
);
mw.messages.set( {
'pdata-deprecated': "
"[[Wikipedia:Persondata|deprecated]]. Please remove it " +
"from your [[Wikipedia:User scripts|user script]] page."
Line 40 ⟶ 39:
$( portletLink ).click( function ( e ) {
e.preventDefault();
mw.notify(
mw.message( 'pdata-deprecated' ) { title: 'Script deprecated' }
);
} );
}
|