diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-02-04 20:24:40 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-02-04 22:50:22 +0100 |
commit | 8a5777fd1ad8cc96c90db6dddfadbcd160558e8e (patch) | |
tree | a9ccfcbf12c6762c9b6bd7a66f5c18e2fa1a5deb | |
parent | affabd9a4b24d08ac4beb5828fc0103b4f36e3ef (diff) |
Forward all arguments of the function call
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index af47e85af..1ef341415 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6315,7 +6315,7 @@ function rcube_webmail() { // forward call to parent window if (this.is_framed()) { - return parent.rcmail.show_popup_dialog(html, title, buttons); + return parent.rcmail.show_popup_dialog(html, title, buttons, options); } var popup = $('<div class="popup">') |