forked from marva/sumorobot-web
Can use any id Sumo-xxxxxx or xxxxxx case insensitive also
This commit is contained in:
parent
6515efafa9
commit
8d0140968d
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
||||
_site/
|
||||
.sass-cache/
|
||||
.jekyll-metadata
|
||||
test.html
|
||||
|
@ -231,7 +231,7 @@ window.addEventListener('load', function() {
|
||||
// Robot GO button listener
|
||||
$('.btn-robot-go').click(function() {
|
||||
// Get and validate the selected robot ID
|
||||
var robotId = $('#robot-id').val().trim();
|
||||
var robotId = $('#robot-id').val().trim().toLowerCase().split("-").reverse()[0];
|
||||
if (robotId === '' || /^([a-zA-Z0-9]{6})$/.test(robotId) == false) {
|
||||
$('#robot-id, #robot-label').addClass('has-error');
|
||||
return;
|
||||
|
@ -4,7 +4,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
var exampleSocket = new WebSocket("ws://192.168.1.1:80/p2p/sumo-277344/browser/");
|
||||
var exampleSocket = new WebSocket("ws://sumo.koodur.com:80/p2p/sumo-2773EE/browser/");
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user