fix: chat icon injection
This commit is contained in:
Родитель
8dac9e6dd1
Коммит
de73180cea
|
@ -3,9 +3,13 @@ export default function injectChatIcon(toggleRoster: () => void) {
|
|||
let div = $('<div/>');
|
||||
|
||||
div.addClass('ojsxc-chat-icon');
|
||||
div.click(function() {
|
||||
div.on('click', function() {
|
||||
toggleRoster();
|
||||
});
|
||||
|
||||
$('#header form.searchbox').after(div);
|
||||
if ($('#header .header-right').length > 0) {
|
||||
$('#header .header-right').prepend(div);
|
||||
} else {
|
||||
$('#header form.searchbox').after(div);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче