From ac5d15de2946cbd8988c11de0f218aeb1acf58dc Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Thu, 14 Aug 2008 07:27:16 -0400
Subject: [PATCH] Added template object for current mailbox name (#1485256)

---
 program/js/app.js |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index 58d1175..998efd7 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3409,6 +3409,13 @@
     };
 
 
+  // 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)
     {

--
Gitblit v1.9.1