diff options
author | thomascube <thomas@roundcube.net> | 2005-10-13 22:21:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-13 22:21:10 +0000 |
commit | 14eafe4d89056b6a5bd383f15c2ca1de647f1d4e (patch) | |
tree | 2f5d2126ce09fbbb0c692bd07fdb8728e3bbc27d /program/js/app.js | |
parent | 455c2bd934e0dd708244e9e1c9fc7acd5d7b37e7 (diff) |
Fixed bug #1325050; added alt-texts for IE
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 3837a3179..fb0c4556d 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1802,6 +1802,10 @@ function rcube_webmail() } if (row.cells[2].firstChild.tagName=='A') row.cells[2].firstChild.onclick = new Function(this.ref+".command('delete-folder','"+name+"')"); + + var form; + if ((form = this.gui_objects.editform) && form.elements['_folder_name']) + form.elements['_folder_name'].value = ''; }; |