User:PrelevatedInsider22581/common.js: Difference between revisions

From BetaArchive Wiki
No edit summary
No edit summary
Line 5: Line 5:
} );
} );
button.on( 'click', function () {
button.on( 'click', function () {
alert( 'You clicked the button!' );
OO.ui.alert( 'Something happened!' ).done( function () {
    console.log( 'User closed the dialog.' );
} );
} );
} );
$( '#mw-content-text' ).append( button.$element );
$( '#mw-content-text' ).append( button.$element );
} );
} );
} );
} );
mw.loader.using('mediawiki.widgets').then( function (){
var config = {};
var namespaceInput = new mw.widgets.NamespaceInputWidget( config );
$( '#bodyContent' ).append( namespaceInput.$element );
});

Revision as of 17:56, 17 July 2023

mw.loader.using( 'oojs-ui-core' ).done( function () {
	$( function () {
		var button = new OO.ui.ButtonWidget( {
			label: 'Click me!'
		} );
		button.on( 'click', function () {
OO.ui.alert( 'Something happened!' ).done( function () {
    console.log( 'User closed the dialog.' );
} );
		} );
		$( '#mw-content-text' ).append( button.$element );
	} );
} );