thomascube
2007-10-10 480f5d9246fc745e3d8fb36196f56b2e187290c4
Suppress IE errors when clearing attachments form (#1484356)

1 files modified
7 ■■■■ changed files
program/js/app.js 7 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -1857,8 +1857,11 @@
      }
      
    // clear upload form
    if (!a && this.gui_objects.attachmentform && this.gui_objects.attachmentform!=this.gui_objects.messageform)
      this.gui_objects.attachmentform.reset();
    try {
      if (!a && this.gui_objects.attachmentform != this.gui_objects.messageform)
          this.gui_objects.attachmentform.reset();
    }
    catch(e){}  // ignore errors
    
    return true;  
    };