Bugfix. Need to set the context when calling a _super method

This commit is contained in:
JC Brand 2016-03-09 08:39:04 +00:00
parent c793b846fb
commit 2dbe2fc5a3
2 changed files with 3 additions and 3 deletions

View File

@ -102,7 +102,7 @@
getOldestMaximizedChat: function (exclude_ids) { getOldestMaximizedChat: function (exclude_ids) {
exclude_ids.push('controlbox'); exclude_ids.push('controlbox');
this._super.getOldestMaximizedChat(exclude_ids); this._super.getOldestMaximizedChat.apply(this, arguments);
}, },
getChatBoxWidth: function (view) { getChatBoxWidth: function (view) {