mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 10:28:31 +02:00
Fix clicking on file name toggles checkbox
This commit is contained in:
@ -673,10 +673,8 @@ app.filemanager = AppJS.extend(
|
||||
editfield.value = file;
|
||||
return false;
|
||||
},
|
||||
select_toggle: function(file)
|
||||
select_toggle: function(file,widget)
|
||||
{
|
||||
checkbox = document.getElementById("exec[dir][selected]["+file+"]");
|
||||
if (checkbox) checkbox.checked = !checkbox.checked;
|
||||
return false;
|
||||
widget._parent.getWidgetById('selected['+file+']').set_value(file);
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user