diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-11-28 08:31:54 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-11-28 08:31:54 +0100 |
commit | 46f06cd0e97a9b7d5294470d88452440642e3740 (patch) | |
tree | 479394cfb9126f43660e6ce7ce8d75a4062f8278 /plugins | |
parent | da7905f9c6a4038e22486442a81261c98b35cfe8 (diff) |
Fixed compatibility with jQueryUI-1.9
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/managesieve/Changelog | 1 | ||||
-rw-r--r-- | plugins/managesieve/managesieve.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/managesieve/Changelog b/plugins/managesieve/Changelog index 6baaa0499..aa89e69a3 100644 --- a/plugins/managesieve/Changelog +++ b/plugins/managesieve/Changelog @@ -1,6 +1,7 @@ - Fixed filter activation/deactivation confirmation message (#1488765) - Moved rcube_* classes to <plugin>/lib/Roundcube for compat. with Roundcube Framework autoloader - Fixed filter selection after filter deletion (#1488832) +- Fixed compatibility with jQueryUI-1.9 * version 6.0 [2012-10-03] ----------------------------------------------------------- diff --git a/plugins/managesieve/managesieve.js b/plugins/managesieve/managesieve.js index 5404a6d1a..04b9a76af 100644 --- a/plugins/managesieve/managesieve.js +++ b/plugins/managesieve/managesieve.js @@ -754,7 +754,7 @@ rcube_webmail.prototype.managesieve_create = function() // load form in the iframe var frame = $('<iframe>').attr({src: url, frameborder: 0}) - dialog.empty().append(frame).dialog('dialog').resize(); + dialog.empty().append(frame).dialog('widget').resize(); // Change [Next Step] button with [Save] button buttons = {}; |