Changeset 795 in subversion


Ignore:
Timestamp:
Sep 11, 2007 1:11:03 PM (6 years ago)
Author:
thomasb
Message:

Fixed check for message content when composing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/js/app.js

    r789 r795  
    16921692 
    16931693    // check for empty body 
    1694     if ((input_message.value == '' || (window.tinyMCE && tinyMCE.getContent() == '')) && !confirm(this.get_label('nobodywarning'))) 
     1694    if ((input_message.value == '' && (!window.tinyMCE || tinyMCE.getContent() == '')) && !confirm(this.get_label('nobodywarning'))) 
    16951695      { 
    16961696      input_message.focus(); 
Note: See TracChangeset for help on using the changeset viewer.