User:Proteins/unindent.js

This is an old revision of this page, as edited by Proteins (talk | contribs) at 11:30, 23 October 2008 (begin script for unindenting dialog for accessibility). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
//<pre>
// Unindent discusions for accessibility
 
function unindent() {
	var alert_string = "";

	var indent_level = 0;

	var DL_elements;
	var num_DL_elements = 0;

	var DT_elements;
	var num_DT_elements = 0;

	var DD_elements;
	var temp_DD_element;
	var num_DD_elements = 0;
	var DD_element_index = 0;
	var num_unindented_DD_elements = 0;

	// Colors to help sighted people after the unindenting
	var colors = ["black", "red", "blue", "green", "magenta", "cyan", "orange", "purple", "darkgreen", "brown"];


	alert_string = "Unindented " + num_unindented_DD_elements + " paragraphs."
	window.alert(alert_string);

} // closes unindent() function

addOnloadHook(function () {
            addPortletLink('p-cactions', 'javascript:unindent()', 'unindent', 'ca-unindent', 'Unindent discussions', '', '');
});
 
//</pre>