repair broken 'clear channel' button

This commit is contained in:
ansuz
2017-11-21 17:19:35 +01:00
parent 2ff1a17ade
commit 585f9d2e4e
5 changed files with 23 additions and 1 deletions

View File

@@ -108,6 +108,12 @@ define([], function () {
});
};
messenger.clearOwnedChannel = function (channel, cb) {
sFrameChan.query('Q_CONTACTS_CLEAR_OWNED_CHANNEL', channel, function (e) {
cb(e);
});
};
return messenger;
};