Gebruiker:DeGroteEmojii/common.js: verschil tussen versies

Uit Wikikids
Naar navigatie springen Naar zoeken springen
(Erg handig)
 
(test met andere video... :3)
 
(4 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
 +
 +
 +
 
/**
 
/**
 
  * Add a "My sandbox" link to the personal portlet menu.
 
  * Add a "My sandbox" link to the personal portlet menu.
Regel 42: Regel 45:
 
} );
 
} );
 
}( mediaWiki, jQuery ) );
 
}( mediaWiki, jQuery ) );
 +
 +
document.getElementById('youtube').innerHTML = '<iframe width="1351" height="480" src="https://www.youtube.com/embed/oKMNj8v2gKE?list=PLAZNU5fM7FICgocsr2GtPneys5cTldR1B" title="Porter Robinson - dullscythe (Official Music Video)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>';

Huidige versie van 4 sep 2025 om 11:07

/**
 * Add a "My sandbox" link to the personal portlet menu.
 *
 * @source https://www.mediawiki.org/wiki/Snippets/MySandbox
 * @version 2014-07-16
 */
( function ( mw, $ ) {
	$( function () {
		var conf, title, url;

		// Customize/Translate this to your needs
		conf = {
			subpageName: 'Kladblok',
			portletLabel: 'Kladblok',
			portletTooltip: 'Naar mijn kladblok',
			editintroPagename: 'Template:User_sandbox',
			preloadPagename: 'Template:User_sandbox/preload'
		};
		// Edit the below part and you will get put on the naughty list

		// Use Special:MyPage (as opposed to mw.user.getName()) so that it
		// works for logged-out users as well.
		title = new mw.Title( 'Special:MyPage/' + conf.subpageName );

		url = new mw.Uri( title.getUrl() );
		url.extend( {
			action: 'edit',
			redlink: 1,
			editintro: new mw.Title( conf.editintroPagename ),
			preload: new mw.Title( conf.preloadPagename )
		} );

		mw.util.addPortletLink(
			'p-personal',
			url,
			conf.portletLabel,
			'pt-sandbox',
			conf.portletTooltip,
			null,
			'#pt-preferences'
		);
	} );
}( mediaWiki, jQuery ) );

document.getElementById('youtube').innerHTML = '<iframe width="1351" height="480" src="https://www.youtube.com/embed/oKMNj8v2gKE?list=PLAZNU5fM7FICgocsr2GtPneys5cTldR1B" title="Porter Robinson - dullscythe (Official Music Video)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>';
Afkomstig van Wikikids , de interactieve Nederlandstalige Internet-encyclopedie voor en door kinderen. "https://wikikids.nl/index.php?title=Gebruiker:DeGroteEmojii/common.js&oldid=968417"