From 544dac7de79ab2d531f707833e4432460f20fde2 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Sat, 20 Nov 2010 17:41:46 -0700 Subject: [PATCH] Fix logic --- imp/js/compose-dimp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imp/js/compose-dimp.js b/imp/js/compose-dimp.js index d29dbfceb..78aafcae8 100644 --- a/imp/js/compose-dimp.js +++ b/imp/js/compose-dimp.js @@ -367,7 +367,7 @@ var DimpCompose = { if (redirect.visible()) { DimpCore.loadingImg('sendingImg', 'redirect', disable); DimpCore.toggleButtons(redirect.select('DIV.dimpActions A'), disable); - redirect.setStyle({ cursor: disable ? null : 'wait' }); + redirect.setStyle({ cursor: disable ? 'wait': null }); } else { DimpCore.loadingImg('sendingImg', 'composeMessageParent', disable); DimpCore.toggleButtons($('compose').select('DIV.dimpActions A'), disable); @@ -379,7 +379,7 @@ var DimpCompose = { this.RTELoading(disable ? 'show' : 'hide', true); } - $('compose').setStyle({ cursor: disable ? null : 'wait' }); + $('compose').setStyle({ cursor: disable ? 'wait' : null }); } }, -- 2.11.0