forked from marva/sumorobot-web
remove "sumo-" value on input blur
This commit is contained in:
parent
7ea27bdfb4
commit
47336279a4
@ -529,6 +529,15 @@ window.onload = function() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/* when robot-id input field gets unfocused */
|
||||||
|
$("#robot-id").focus(function() {
|
||||||
|
/* if the robot-id input value is the previously set "sumo-" */
|
||||||
|
if ($("#robot-id").val() === "sumo-") {
|
||||||
|
/* remove the value */
|
||||||
|
$("#robot-id").val("");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
/* robot number button listener */
|
/* robot number button listener */
|
||||||
$(".btn-robot-go").click(function() {
|
$(".btn-robot-go").click(function() {
|
||||||
/* extract and validate the selected robot ID */
|
/* extract and validate the selected robot ID */
|
||||||
|
Loading…
Reference in New Issue
Block a user