summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9bde24b)
raw | patch | inline | side by side (parent: 9bde24b)
author | jlgijsbers <jlgijsbers@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 27 Aug 2003 17:34:57 +0000 (17:34 +0000) | ||
committer | jlgijsbers <jlgijsbers@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 27 Aug 2003 17:34:57 +0000 (17:34 +0000) |
while no keyword was defined.
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1831 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1831 57a73879-2fb5-44c3-a270-3262357dd7e2
templates/classic/html/help_controls.js | patch | blob | history |
index 39f1bf634e509300e12896d039211acba35734f1..199cb1faba7ac6558871e492dc92837efd3e826f 100644 (file)
function updateList() {
// write back to opener window
+ if (document.frm_help.check==undefined) { return; }
var list = new Array();
for (box=0; box < document.frm_help.check.length; box++) {
if (document.frm_help.check[box].checked) {
function updatePreview() {
// add new checkbox selections to preview
+ if (document.frm_help.check==undefined) { return; }
var list = new Array();
for (box=0; box < document.frm_help.check.length; box++) {
if (document.frm_help.check[box].checked) {
function clearList() {
// uncheck all checkboxes
+ if (document.frm_help.check==undefined) { return; }
for (box=0; box < document.frm_help.check.length; box++) {
document.frm_help.check[box].checked = false;
}
function reviseList(vals) {
// update the checkboxes based on the preview field
+ if (document.frm_help.check==undefined) { return; }
var to_check;
var list = vals.split(",");
for (box=0; box < document.frm_help.check.length; box++) {
function resetList() {
// reset preview and check boxes to initial values
+ if (document.frm_help.check==undefined) { return; }
var to_check;
var list = original_field.split(',');
writePreview(list);