diff options
author | Thomas B. <thomas@roundcube.net> | 2014-09-09 08:44:33 +0200 |
---|---|---|
committer | Thomas B. <thomas@roundcube.net> | 2014-09-09 08:44:33 +0200 |
commit | 921bde431ddfc78d457c3f58ddf9670f1d83ee0a (patch) | |
tree | 180ee00f194f609b4878fab548d4166b264afd71 | |
parent | 4a25b69828ea77a4561c68f58cf96287cddb0b09 (diff) | |
parent | 3ef97f8de30851cddcf1a6aa105b37478bb08af6 (diff) |
Merge pull request #217 from JohnDoh/patch-1
add missing event argument for hide_menu calls
-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 e5a70c9f1..9fc8a0a26 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6902,7 +6902,7 @@ function rcube_webmail() // truncate stack down to the one containing the ref link for (var i = this.menu_stack.length - 1; stack && i >= 0; i--) { if (!$(ref).parents('#'+this.menu_stack[i]).length) - this.hide_menu(this.menu_stack[i]); + this.hide_menu(this.menu_stack[i], event); } if (stack && this.menu_stack.length) { obj.data('parent', $.last(this.menu_stack)); |