Author Topic: Little bug in app.js?  (Read 2676 times)

Offline bugler

  • Jr. Member
  • **
  • Posts: 54
Little bug in app.js?
« on: January 24, 2007, 03:27:09 AM »
Hi,

I think function

 // onmouseup handler for mailboxlist item
 this.mbox_mouse_up = function(mbox)
  { //alert("mouse_mbox_up");
  if (this.drag_active)
   {
   this.unfocus_mailbox(mbox);
   this.command('moveto', mbox);
   }
  else
   this.command('list', mbox);    
  return false;
  };

should be
 // onmouseup handler for mailboxlist item
 this.mbox_mouse_up = function(mbox)
  { //alert("mouse_mbox_up");
  if (this.drag_active)
   {
   this.unfocus_mailbox(mbox);
   this.command('moveto', mbox);
   }
  else
   this.command('list', mbox);    
   this.enable_command( 'reply', 'reply-all', 'forward', 'print', false);
  return false;
  };

so reply, reply-all and so on are not active when you change folder and no message is selected.

Ed.