BOLO plate converted to uppercase

This commit is contained in:
Dan
2020-02-18 17:01:49 +00:00
parent 4c96e2dda4
commit 0c3dc42103

View File

@@ -635,7 +635,7 @@ function loadUiSettings( data )
// Sets the on click function for the set BOLO plate button // Sets the on click function for the set BOLO plate button
elements.setBoloBtn.click( function() { elements.setBoloBtn.click( function() {
// Grab the value of the text input box // Grab the value of the text input box
let plate = elements.boloText.val(); let plate = elements.boloText.val().toUpperCase();
// Send the plate to the Lua side // Send the plate to the Lua side
sendData( "setBoloPlate", plate ); sendData( "setBoloPlate", plate );