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 () {
             mw.loader.using( 'oojs-ui-core' ).doe( function () {
             mw.loader.using( 'oojs-ui-core' ).done( function () {
                 OO.ui.alert( 'Something happened!' ).done( function () {
                 OO.ui.alert( 'Something happened!' ).done( function () {
     console.log( 'User closed the dialog.' );
     console.log( 'User closed the dialog.' );

Revision as of 17:59, 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 () {
            mw.loader.using( 'oojs-ui-core' ).done( function () {
                 OO.ui.alert( 'Something happened!' ).done( function () {
    console.log( 'User closed the dialog.' );
} );
            } );
		} );
		$( '#mw-content-text' ).append( button.$element );
	} );
} );