User:PrelevatedInsider22581/common.js: Difference between revisions

From BetaArchive Wiki
No edit summary
No edit summary
Line 6: Line 6:
$( function () {
$( function () {
var button = new OO.ui.ButtonWidget( {
var button = new OO.ui.ButtonWidget( {
label: 'Click me!'
label: 'Page information'
} );
} );
button.on( 'click', function () {
button.on( 'click', function () {

Revision as of 19:29, 17 July 2023

function getHref() {
    return location.href;
}

mw.loader.using( 'oojs-ui-core' ).done( function () {
	$( function () {
		var button = new OO.ui.ButtonWidget( {
			label: 'Page information'
		} );
		button.on( 'click', function () {
             location.href = getHref() + "&action=info"
		} );
		$( '#mw-content-text' ).append( button.$element );
	} );
} );