@julian said in counts for /flags and /post-queue:
@murcs As the changes were contained in multiple commits, it may be easiest for you to wait for v1.16.2 (this Wednesday)
oh! great. just three days to wait. sounds fairly okay =;^)
Not really sure where to put this, although it's not really a bug/issue
public/src/modules/chat.js, line 264
module.load = function(uuid) {
var chatModal = $('div[UUID="'+uuid+'"]');
chatModal.removeClass('hide');
checkOnlineStatus(chatModal);
taskbar.updateActive(uuid);
Chats.scrollToBottom(chatModal.find('#chat-content'));
module.center(chatModal);
module.bringModalToTop(chatModal);
socket.emit('modules.chats.markRead', chatModal.attr('touid'));
};
module.center(chatModal);
Basically, every time you open(un-hide) a chat window back up from the taskbar, it re-centers it on the screen.
Without this line, the chat window opens(un-hides) in it's previous location. Which is kinda nice
Such a small thing haha
But yeah, it's kind of nice, was wondering if there was a reason for this, or perhaps just kind of happens to be this way from when it was written?
Kind of hijacking this thread to also say something minor about the chat modal: It's base z-index
is higher than the bootstrap popover (1010 vs 200x), which causes this issue.