Aleksander Machniak
2013-11-20 ba2d42f0be21c22c342407e4a2cf1b9c86f7c32f
Fix attachment menu link in IE8
2 files modified
4 ■■■■ changed files
skins/classic/functions.js 2 ●●● patch | view | raw | blame | history
skins/larry/ui.js 2 ●●● patch | view | raw | blame | history
skins/classic/functions.js
@@ -984,7 +984,7 @@
      else if (rcmail.env.action == 'show' || rcmail.env.action == 'preview')
        // add menu link for each attachment
        $('#attachment-list > li[id^="attach"]').each(function() {
          $(this).append($('<a class="drop">').click(function() { rcmail_ui.show_attachmentmenu(this); }));
          $(this).append($('<a class="drop"></a>').click(function() { rcmail_ui.show_attachmentmenu(this); }));
        });
    }
    else if (rcmail.env.task == 'addressbook') {
skins/larry/ui.js
@@ -106,7 +106,7 @@
        // add menu link for each attachment
        $('#attachment-list > li').each(function() {
          $(this).append($('<a class="drop">').click(function() { attachmentmenu(this); }));
          $(this).append($('<a class="drop"></a>').click(function() { attachmentmenu(this); }));
        });
      }
      else if (rcmail.env.action == 'compose') {