thomascube
2010-07-25 64fa955059a8dffe553c01a05115afed1c91e8f2
Surround attachment form cleaning with try/catch

1 files modified
8 ■■■■ changed files
skins/default/functions.js 8 ●●●● patch | view | raw | blame | history
skins/default/functions.js
@@ -88,8 +88,12 @@
{
  if (typeof show == 'object') // called as event handler
    show = false;
  if (!show)
    $('#attachment-form input[type=file]').val('');
  // clear upload form
  if (!show) {
    try { $('#attachment-form form')[0].reset(); }
    catch(e){}  // ignore errors
  }
  this.show_popupmenu('uploadmenu', show);