From: Michael M Slusarz Date: Sun, 21 Nov 2010 00:41:46 +0000 (-0700) Subject: Fix logic X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=544dac7de79ab2d531f707833e4432460f20fde2;p=horde.git Fix logic --- 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 }); } },