Monotone-Parent: f0f9b59622edc3c50495879ef3a90e5dd2b2ea1e

Monotone-Revision: a26c83f12ef82aa63257ce34342230e701cb350e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-05-04T20:19:09
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-05-04 20:19:09 +00:00
parent eb6bae33a9
commit dced455327
2 changed files with 8 additions and 4 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
2010-05-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/ContactsUI.js (initContacts): we must
configure the ab toolbar even when in popup mode.
configure the ab toolbar even when in popup mode, provided
"tabsContainer" does resolve to an existing element since the
script will be included for utility windows too.
2010-05-04 Francis Lachapelle <flachapelle@inverse.ca>
+5 -3
View File
@@ -1182,10 +1182,12 @@ function initContacts(event) {
configureSelectionButtons();
}
var controller = new SOGoTabsController();
var tabsContainer = $("smallToolbarContainer");
controller.attachToTabsContainer(tabsContainer);
configureAbToolbar();
if (tabsContainer) {
var controller = new SOGoTabsController();
controller.attachToTabsContainer(tabsContainer);
configureAbToolbar();
}
// Addressbook import form
$("uploadCancel").observe("click", hideContactsImport);