mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-12-22 21:40:08 +00:00
Fix scroll position when toggling fullscreen
This commit is contained in:
parent
ae27b7e059
commit
511ebba4f6
@ -124,26 +124,26 @@ Make the user leave the chat when **Tims Chat** is about to be unloaded.
|
|||||||
# TODO
|
# TODO
|
||||||
return if WCF.System.Mobile.UX._enabled
|
return if WCF.System.Mobile.UX._enabled
|
||||||
|
|
||||||
return unless $('html').hasClass 'fullscreen'
|
if $('html').hasClass 'fullscreen'
|
||||||
|
do ->
|
||||||
|
verticalContentPadding = $('#content').innerHeight() - $('#content').height()
|
||||||
|
verticalSizeOfContentElements = do ->
|
||||||
|
height = 0
|
||||||
|
$('#content > *:visible').each (k, v) -> height += $(v).outerHeight()
|
||||||
|
height
|
||||||
|
|
||||||
do ->
|
freeSpace = $('body').height() - verticalContentPadding - verticalSizeOfContentElements
|
||||||
verticalContentPadding = $('#content').innerHeight() - $('#content').height()
|
|
||||||
verticalSizeOfContentElements = do ->
|
|
||||||
height = 0
|
|
||||||
$('#content > *:visible').each (k, v) -> height += $(v).outerHeight()
|
|
||||||
height
|
|
||||||
|
|
||||||
freeSpace = $('body').height() - verticalContentPadding - verticalSizeOfContentElements
|
$('.timsChatMessageContainer').height $('.timsChatMessageContainer').height() + freeSpace
|
||||||
|
do ->
|
||||||
$('.timsChatMessageContainer').height $('.timsChatMessageContainer').height() + freeSpace
|
verticalUserListContainerPadding = $('#timsChatUserListContainer').innerHeight() - $('#timsChatUserListContainer').height()
|
||||||
do ->
|
sidebarHeight = $('.sidebar > div').height()
|
||||||
verticalUserListContainerPadding = $('#timsChatUserListContainer').innerHeight() - $('#timsChatUserListContainer').height()
|
|
||||||
sidebarHeight = $('.sidebar > div').height()
|
|
||||||
|
|
||||||
freeSpace = $('body').height() - verticalUserListContainerPadding - sidebarHeight
|
|
||||||
$('#timsChatUserList').height $('#timsChatUserList').height() + freeSpace
|
|
||||||
|
|
||||||
|
freeSpace = $('body').height() - verticalUserListContainerPadding - sidebarHeight
|
||||||
|
$('#timsChatUserList').height $('#timsChatUserList').height() + freeSpace
|
||||||
|
|
||||||
|
if $('#timsChatAutoscroll').data 'status'
|
||||||
|
$('.timsChatMessageContainer.active').scrollTop $('.timsChatMessageContainer.active').prop 'scrollHeight'
|
||||||
|
|
||||||
Insert the appropriate smiley code into the input when a smiley is clicked.
|
Insert the appropriate smiley code into the input when a smiley is clicked.
|
||||||
|
|
||||||
@ -334,6 +334,7 @@ Toggle fullscreen mode.
|
|||||||
$('.timsChatMessageContainer').height messageContainerSize
|
$('.timsChatMessageContainer').height messageContainerSize
|
||||||
$('#timsChatUserList').height userListSize
|
$('#timsChatUserList').height userListSize
|
||||||
$('html').removeClass 'fullscreen'
|
$('html').removeClass 'fullscreen'
|
||||||
|
do $(window).resize
|
||||||
|
|
||||||
Toggle checkboxes.
|
Toggle checkboxes.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user