Fix keyboard events on list widgets in Internet Explorer (#1489025) - It was a regression in fix for #1489008
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix keyboard events on list widgets in Internet Explorer (#1489025) |
| | | |
| | | RELEASE 0.9-rc2 |
| | | --------------- |
| | | - Fix security issue in save-pref command |
| | | - Remove sig_above configuration option, use reply_mode only (#1489001) |
| | | - Refresh current folder in opener window after draft save or message sent (#1488997) |
| | |
| | | parent.rcmail.env.frame_lock = null; |
| | | } |
| | | |
| | | // Makes that reference to document.activeElement do not throw |
| | | // "unspecified error" in IE9 (#1489008) |
| | | if (this.env.framed && bw.ie) |
| | | document.documentElement.focus(); |
| | | |
| | | // enable general commands |
| | | this.enable_command('close', 'logout', 'mail', 'addressbook', 'settings', 'save-pref', |
| | | 'compose', 'undo', 'about', 'switch-task', 'menu-open', 'menu-save', true); |
| | |
| | | // jQuery plugin to emulate HTML5 placeholder attributes on input elements |
| | | jQuery.fn.placeholder = function(text) { |
| | | return this.each(function() { |
| | | var elem = $(this); |
| | | var active = false, elem = $(this); |
| | | this.title = text; |
| | | |
| | | // Try HTML5 placeholder attribute first |
| | |
| | | elem[(active ? 'addClass' : 'removeClass')]('placeholder').attr('spellcheck', active); |
| | | }); |
| | | |
| | | // Do not blur currently focused element |
| | | if (this != document.activeElement) |
| | | // Do not blur currently focused element (catch exception: #1489008) |
| | | try { active = this == document.activeElement; } catch(e) {} |
| | | if (!active) |
| | | elem.blur(); |
| | | } |
| | | }); |
| | |
| | | this.shift_start = null; |
| | | |
| | | this.last_selected = id; |
| | | this.list.focus(); |
| | | }, |
| | | |
| | | |