From 8a5777fd1ad8cc96c90db6dddfadbcd160558e8e Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Tue, 04 Feb 2014 16:50:22 -0500
Subject: [PATCH] Forward all arguments of the function call
---
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 af47e85..1ef3414 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -6315,7 +6315,7 @@
{
// 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">')
--
Gitblit v1.9.1