Project

General

Profile

« Previous | Next » 

Revision 4100

Added by daigle almost 16 years ago

Clean up formatting on configuration pages

View differences:

admin.js
96 96
	document.getElementById(objectID).style.display = 'table'; 
97 97
} 
98 98

  
99
function toggleHiddenDefaultText(radioName, activeSkinName) {
100
	radioList = document.getElementsByName(radioName);
101
	for (i = 0; i < radioList.length; i++) {
102
		radioId = radioList[i].id;
103
		nameArray = radioId.split("-", 1);
104
		radioSkinName = nameArray[0];
105
		if (radioSkinName == activeSkinName) {
106
			document.getElementById("hiding-default-" + radioSkinName).style.display = 'inline';
107
		} else {
108
			document.getElementById("hiding-default-" + radioSkinName).style.display = 'none';
109
		}
110
	}
111
}
112

  
113

  

Also available in: Unified diff