mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-10-31 14:10:08 +00:00
Add smiley overlay for mobile devices
This commit is contained in:
parent
bf0463a325
commit
f5bd373839
@ -49,7 +49,9 @@ exposed by a function if necessary.
|
||||
userListSize = 0
|
||||
|
||||
remainingFailures = 3
|
||||
|
||||
|
||||
overlaySmileyList = null
|
||||
|
||||
events =
|
||||
newMessage: $.Callbacks()
|
||||
userMenu: $.Callbacks()
|
||||
@ -147,6 +149,26 @@ Insert the appropriate smiley code into the input when a smiley is clicked.
|
||||
|
||||
$('#smilies').on 'click', 'img', -> insertText " #{$(@).attr('alt')} "
|
||||
|
||||
Copy the first loaded category of smilies so it won't get detached by wcfDialog
|
||||
|
||||
overlaySmileyList = $('<ul class="smileyList">').append $('#smilies .smileyList').clone().children()
|
||||
|
||||
Add click event to smilies in the overlay
|
||||
|
||||
overlaySmileyList.on 'click', 'img', ->
|
||||
insertText " #{$(@).attr('alt')} "
|
||||
overlaySmileyList.wcfDialog 'close'
|
||||
|
||||
Open the smiley wcfDialog
|
||||
|
||||
$('#timsChatSmileyPopupButton').on 'click', ->
|
||||
overlaySmileyList.wcfDialog
|
||||
title: WCF.Language.get 'chat.general.smilies'
|
||||
|
||||
overlaySmileyList.css
|
||||
'max-height': $(window).height() - overlaySmileyList.parent().siblings('.dialogTitlebar').outerHeight()
|
||||
'overflow': 'auto'
|
||||
|
||||
Handle private channel menu
|
||||
|
||||
$('#timsChatMessageTabMenu > .tabMenu').on 'click', '.timsChatMessageTabMenuAnchor', ->
|
||||
|
@ -425,7 +425,7 @@
|
||||
|
||||
#timsChatUserList {
|
||||
> ul {
|
||||
> li {
|
||||
> .timsChatUser {
|
||||
&.you {
|
||||
a {
|
||||
&:hover {
|
||||
@ -435,6 +435,10 @@
|
||||
}
|
||||
}
|
||||
|
||||
&.away {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
a {
|
||||
img {
|
||||
margin-right: @wcfGapTiny;
|
||||
@ -469,6 +473,18 @@
|
||||
#fish {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.dialogContent {
|
||||
.smileyList {
|
||||
> li {
|
||||
> a {
|
||||
img {
|
||||
margin: @wcfGapTiny;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// TODO
|
||||
|
Loading…
Reference in New Issue
Block a user