diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-08-14 11:27:16 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-08-14 11:27:16 +0000 |
| commit | d3ca93a34895a2b99cb07661e3b19421268af1db (patch) | |
| tree | 7bdcc380db84b5d795cd02dbfbaa68d86fc846f3 /roundcubemail/program/js | |
| parent | f310872f808cf4a76dccf9e87b2cdc724a1b9cdc (diff) | |
Added template object for current mailbox name (#1485256)
git-svn-id: https://svn.roundcube.net/trunk@1647 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 58d117591..998efd7a2 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -3409,6 +3409,13 @@ function rcube_webmail() }; + // replace content of mailboxname display + this.set_mailboxname = function(content) + { + if (this.gui_objects.mailboxname && content) + this.gui_objects.mailboxname.innerHTML = content; + }; + // replace content of quota display this.set_quota = function(content) { |
