Changeset 4898 in subversion


Ignore:
Timestamp:
Jul 1, 2011 4:06:46 PM (23 months ago)
Author:
alec
Message:
File:
1 edited

Legend:

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

    r4893 r4898  
    28682868      // add signature according to selected identity 
    28692869      // if we have HTML editor, signature is added in callback 
    2870       if (input_from.attr('type') == 'select-one' && $("input[name='_draft_saveid']").val() == '') { 
     2870      if (input_from.prop('type') == 'select-one' && $("input[name='_draft_saveid']").val() == '') { 
    28712871        this.change_identity(input_from[0]); 
    28722872      } 
     
    29072907 
    29082908    // check sender (if have no identities) 
    2909     if (input_from.attr('type') == 'text' && !rcube_check_email(input_from.val(), true)) { 
     2909    if (input_from.prop('type') == 'text' && !rcube_check_email(input_from.val(), true)) { 
    29102910      alert(this.get_label('nosenderwarning')); 
    29112911      input_from.focus(); 
Note: See TracChangeset for help on using the changeset viewer.