From 4262b30ebc5b2f22e5109dab520aad6eff6df134 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 25 Jun 2009 23:18:18 -0600 Subject: [PATCH] Fix address context actions. --- imp/js/src/DimpCore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imp/js/src/DimpCore.js b/imp/js/src/DimpCore.js index bfbe9f103..ea5c0f088 100644 --- a/imp/js/src/DimpCore.js +++ b/imp/js/src/DimpCore.js @@ -449,11 +449,11 @@ var DimpCore = { { switch (elt.readAttribute('id')) { case 'ctx_contacts_new': - this.compose('new', { to: elt.readAttribute('address') }); + this.compose('new', { to: baseelt.readAttribute('address') }); break; case 'ctx_contacts_add': - this.doAction('AddContact', { name: elt.readAttribute('personal'), email: elt.readAttribute('email') }, null, true); + this.doAction('AddContact', { name: baseelt.readAttribute('personal'), email: baseelt.readAttribute('email') }, null, true); break; } }, -- 2.11.0