mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Allow users to resize the message container
This commit is contained in:
parent
c7cd385a14
commit
5abf436b43
@ -82,7 +82,6 @@ Initialize **Tims Chat**. Bind needed DOM events and initialize data structures.
|
||||
return false if initialized
|
||||
initialized = true
|
||||
|
||||
messageContainerSize = $('.timsChatMessageContainer').height()
|
||||
userListSize = $('#timsChatUserList').height()
|
||||
|
||||
v.config = config
|
||||
@ -328,6 +327,8 @@ Toggle fullscreen mode.
|
||||
$('.dropdownMenu').data 'orientationX', ''
|
||||
|
||||
if $(@).data 'status'
|
||||
messageContainerSize = $('.timsChatMessageContainer').height()
|
||||
|
||||
$('html').addClass 'fullscreen'
|
||||
do $(window).resize
|
||||
else
|
||||
|
@ -145,9 +145,11 @@
|
||||
}
|
||||
|
||||
.timsChatMessageContainer {
|
||||
min-height: 100px;
|
||||
height: 300px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
resize: vertical;
|
||||
|
||||
.timsChatMarkContainer {
|
||||
display: none;
|
||||
@ -487,7 +489,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
// TODO
|
||||
html.fullscreen {
|
||||
html, body {
|
||||
padding: 0;
|
||||
@ -518,6 +519,14 @@ html.fullscreen {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#tplChat {
|
||||
#content {
|
||||
.timsChatMessageContainer {
|
||||
resize: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#main, #content {
|
||||
padding-top: 0;
|
||||
border-top: none;
|
||||
|
Loading…
Reference in New Issue
Block a user