MediaWiki:Common.js: Difference between revisions

From titipi
Jump to navigation Jump to search
No edit summary
No edit summary
Line 41: Line 41:




$('.page-SoLiXG_Home ul li a').attr(function(_, href){
$('.page-SoLiXG_Home ul li a:not([href*="//"])').attr(function(_, href){
     return "test" + href;
     return "test" + href;
});
});

Revision as of 10:42, 5 September 2023

/* Any JavaScript here will be loaded for all users on every page load. */

/*
var customizeToolbar = function () {
	console.log('ciao');
};


if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
	mw.loader.using( 'user.options' ).then( function () {
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor' ), $.ready
			).then( customizeToolbar );
		}
	} );
}
*/

var ul = document.querySelector(".ns-3000 #p-namespaces ul,.ns-3001 #p-namespaces ul");//finding the list
var newLi = document.createElement("li");// creating a list item
newLi.innerHTML = '<button id="wiki-to-pdf-button"><a id="wiki-to-pdf-link" href="#" title="[insert title]">Open in wiki-to-pdf!</a></button>';
if (ul){
     ul.appendChild(newLi);//adding list item to list
     urlsplit = window.location.href.split(':');
     lastsplit = urlsplit.length - 1;
     document.querySelector("#wiki-to-pdf-link").setAttribute('href','/wiki-to-pdf/unfold/'+urlsplit[lastsplit]);
}

/* iframe check */

if ( window.location !== window.parent.location ) {
  document.body.classList.add('iniframe');
   
/* document.querySelector('#wpSave').addEventListener('click',function(){
    window.parent.document.querySelector('#iframe').onload = function(){
       window.location.reload(true);
    }
  }); */
}


$('.page-SoLiXG_Home ul li a:not([href*="//"])').attr(function(_, href){
    return "test" + href;
});