MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
$( function(){ | $( function(){ | ||
if( mw.config.get(' | if( mw.config.get('wgUserName') === null ){ | ||
$('body').bind('cut copy', function(e) { | $('body').bind('cut copy', function(e) { | ||
e.preventDefault(); | e.preventDefault(); |
Revision as of 17:32, 6 June 2021
$( function(){
if( mw.config.get('wgUserName') === null ){
$('body').bind('cut copy', function(e) {
e.preventDefault();
});
}
});
$( function(){
var poemElement = $(".Poem2-Ekatra");
if( poemElement.length ){
var poemText = poemElement.html();
var poemArray = poemText.split("\n");
poemElement.text("");
poemArray.forEach( function(i) {
poemElement.append( '<p style="text-indent: 3em;">' + i + '</p>' );
});
}
});