diff options
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | program/js/app.js | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,8 @@ CHANGELOG Roundcube Webmail =========================== +- Fix keyboard navigation in list widgets (#1489392) +- Allow plugins to grab the reference of opened windows (#1489413) - Larry skin: Improved status message display for better visibility (#1488974) - Fix Internet Explorer 11 detection (#1489434) - Fix date column width to fit the widest possible date format (#1489368) diff --git a/program/js/app.js b/program/js/app.js index 636db82d4..e6c580dd8 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1728,6 +1728,9 @@ function rcube_webmail() extwin.document.write('<html><body>' + this.get_label('loading') + '</body></html>'); } + // allow plugins to grab the window reference (#1489413) + this.triggerEvent('openwindow', { url:url, handle:extwin }); + // focus window, delayed to bring to front window.setTimeout(function() { extwin && extwin.focus(); }, 10); |