Skip to content

Commit

Permalink
Fixd linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Dec 5, 2023
1 parent efb6dbd commit 54cee11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/audiobridgetest.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,10 @@ $(document).ready(function() {
$('#sp' + id).slider('setValue', spatial);
}
} else if(msg["suspended"]) {
var id = msg["suspended"];
let id = msg["suspended"];
$('#rp' + id + ' > i.absusp').removeClass('hide').show();
} else if(msg["resumed"]) {
var id = msg["resumed"];
let id = msg["resumed"];
$('#rp' + id + ' > i.absusp').hide();
} else if(msg["error"]) {
if(msg["error_code"] === 485) {
Expand Down

0 comments on commit 54cee11

Please sign in to comment.