Skip to content
Snippets Groups Projects
Commit 3c99480f authored by Marcelo Schmidt's avatar Marcelo Schmidt
Browse files

add shift modifier

parent 25e7fa1b
No related branches found
No related tags found
No related merge requests found
......@@ -189,7 +189,8 @@
event.preventDefault()
event.stopPropagation()
else if k is 75 and ((navigator?.platform?.indexOf('Mac') isnt -1 and event.metaKey) or (navigator?.platform?.indexOf('Mac') is -1 and event.ctrlKey))
# ctrl (command) + shift + k -> clear room messages
else if k is 75 and ((navigator?.platform?.indexOf('Mac') isnt -1 and event.metaKey and event.shiftKey) or (navigator?.platform?.indexOf('Mac') is -1 and event.ctrlKey and event.shiftKey))
RoomHistoryManager.clear rid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment