From 67472f93a1a6e79d0609e37247ff2826c9ac0bdf Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 19 Apr 2011 14:25:53 +0000 Subject: [PATCH] JavaScript fix for IE Monotone-Parent: 9649af47ac1814f0a873960b05bd95c5d93ec65f Monotone-Revision: 40362052f51195c01351fb098d0a2d6936db5292 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-04-19T14:25:53 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/ContactsUI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/WebServerResources/ContactsUI.js b/UI/WebServerResources/ContactsUI.js index 8f600b8ec..c95b6b38d 100644 --- a/UI/WebServerResources/ContactsUI.js +++ b/UI/WebServerResources/ContactsUI.js @@ -1295,7 +1295,7 @@ function initContacts(event) { if (table) { // Initialize event delegation on contacts table table.multiselect = true; - var tbody = table.tBodies[0]; + var tbody = $(table.tBodies[0]); tbody.on("mousedown", onContactSelectionChange); tbody.on("dblclick", onContactRowDblClick); tbody.on("selectstart", listRowMouseDownHandler);