User:PrelevatedInsider22581/common.js: Difference between revisions

From BetaArchive Wiki
No edit summary
No edit summary
Line 1: Line 1:
  mw.loader.load( '//en.wikipedia.org/w/index.php?title=MediaWiki:VisualEditor.js&action=raw&ctype=text/javascript' );
mw.loader.using( 'oojs-ui-core' ).done( function () {
  window.onload = function() {
$( function () {
    var target = document.getElementById( 'visualeditor' );
var button = new OO.ui.ButtonWidget( {
var numWords = $("#mw-content-text > div").text().split(" ").length;
label: 'Click me!'
var headerWords = $("h1").text().split(" ").length;
} );
var totalWords = numWords + headerWords;
button.on( 'click', function () {
var timeInMinutes = totalWords / 200;
alert( 'You clicked the button!' );
var header = $("h1").text();
} );
$("h1").text(header + " (it will take you " + timeInMinutes + " minutes to read this page)");
$( '#mw-content-text' ).append( button.$element );
 
} );
}
} );

Revision as of 17:52, 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 () {
			alert( 'You clicked the button!' );
		} );
		$( '#mw-content-text' ).append( button.$element );
	} );
} );