MediaWiki:CentralNotice Banner Template Intro.js

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
function CNIT() {
if (mw.config.get( 'wgCanonicalSpecialPageName' ) === 'CentralNoticeBanners') {
	var CNWN = new OO.ui.WindowManager();
	var CNMD = new OO.ui.MessageDialog();
	$( 'body' ).append( CNWN.$element );
	CNWN.addWindows( [ CNMD ] );
	CNWN.openWindow( CNMD, {
		title: 'CN Banner Template',
		message: 'Hello! You may use this banner as template. Click on the >Clone< button and create your own banner using this template. Please do not edit this template directly. Thank you!',
		actions: [
			{
				action: 'accept',
				label: 'OK',
				flags: 'primary'
			}
			]
	});
}
}

mw.loader.using( ['oojs'], function () {
	$( document ).ready( CNIT );
} );