Fix logic
authorMichael M Slusarz <slusarz@curecanti.org>
Sun, 21 Nov 2010 00:41:46 +0000 (17:41 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Sun, 21 Nov 2010 17:30:36 +0000 (10:30 -0700)
imp/js/compose-dimp.js

index d29dbfc..78aafca 100644 (file)
@@ -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 });
         }
     },