mirror of https://github.com/PiyushXCoder/lupt.git
bug fixes
This commit is contained in:
parent
99a2d73c6a
commit
cef173b990
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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' }));
|
||||||
|
|
|
||||||
|
|
@ -46,4 +46,8 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
Camera.setupCamera();
|
Camera.setupCamera();
|
||||||
|
|
||||||
|
$(document).bind("contextmenu",function(e){
|
||||||
|
return false;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
Loading…
Reference in New Issue