diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-13 22:21:10 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2005-10-13 22:21:10 +0000 |
| commit | e31db3ed9472c5ac33e178bc7cd20ab8f97b37fa (patch) | |
| tree | cbfc82718a04b5e7347642a5234298b458b6c8aa /roundcubemail/program/js | |
| parent | 0493b56bbbe40f8831c10a5d030937d12230b9a7 (diff) | |
Fixed bug #1325050; added alt-texts for IE
git-svn-id: https://svn.roundcube.net/trunk@28 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 3837a3179..fb0c4556d 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/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 = ''; }; |
