From StrategyWiki, the video game walkthrough and strategy guide wiki
Jump to navigation Jump to search
(<3)
(fine...)
 
Line 11: Line 11:
return true;
return true;
}
}
addOnloadHook( check_edit_summary );
}
}

Latest revision as of 15:48, 6 June 2011

// Edit page JS
if ( wgAction == 'edit' || wgAction == 'submit' ) {
	addOnloadHook(
		function() {
			// Widen the edit summary box on edit view (?action=edit) and on preview (?action=submit)
			document.getElementById( 'wpSummary' ).setAttribute( 'size', 145 );
		}
	);
	// Oh look, someone's trying to be funny
	function check_edit_summary( event ) {
		return true;
	}
	addOnloadHook( check_edit_summary );
}