Changeset 864 in subversion


Ignore:
Timestamp:
Oct 10, 2007 2:53:58 AM (6 years ago)
Author:
thomasb
Message:

Suppress IE errors when clearing attachments form (#1484356)

File:
1 edited

Legend:

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

    r840 r864  
    18581858       
    18591859    // clear upload form 
    1860     if (!a && this.gui_objects.attachmentform && this.gui_objects.attachmentform!=this.gui_objects.messageform) 
    1861       this.gui_objects.attachmentform.reset(); 
     1860        try { 
     1861      if (!a && this.gui_objects.attachmentform != this.gui_objects.messageform) 
     1862        this.gui_objects.attachmentform.reset(); 
     1863        } 
     1864        catch(e){}  // ignore errors 
    18621865     
    18631866    return true;   
Note: See TracChangeset for help on using the changeset viewer.