bug fixes

This commit is contained in:
Piyush मिश्रः 2021-05-11 22:01:57 +05:30
parent 99a2d73c6a
commit cef173b990
3 changed files with 10 additions and 1 deletions

View File

@ -208,6 +208,11 @@ input {
padding: 0px 8px 3px 8px; padding: 0px 8px 3px 8px;
margin: 2px; margin: 2px;
word-wrap: break-word;; word-wrap: break-word;;
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
} }
.message-other { .message-other {

View File

@ -167,7 +167,7 @@ function connect_next() {
vayakti = []; vayakti = [];
typing = []; typing = [];
State.hideProgress(); State.hideProgress();
Messages.pushStatus('Connectedas '+data.name+' at '+Messages.currentTime()); Messages.pushStatus('Connected as '+myinfo.name+' at '+Messages.currentTime());
socket.send(JSON.stringify({cmd: 'list'})); socket.send(JSON.stringify({cmd: 'list'}));
}); });
socket.send(JSON.stringify({ cmd: 'randnext' })); socket.send(JSON.stringify({ cmd: 'randnext' }));

View File

@ -46,4 +46,8 @@ $(document).ready(function() {
}); });
Camera.setupCamera(); Camera.setupCamera();
$(document).bind("contextmenu",function(e){
return false;
});
}); });