This commit is contained in:
e2002
2022-02-28 23:05:23 +03:00
parent 1ce139d8c7
commit c6a2e3d56f
5 changed files with 32 additions and 16 deletions

View File

@@ -18,19 +18,11 @@ function onClose(event) {
document.getElementById('playbutton').setAttribute("class", "stopped");
setTimeout(initWebSocket, 2000);
}
function cleanString(input) {
var output = "";
for (var i=0; i<input.length; i++) {
if (input.charCodeAt(i) <= 127 || input.charCodeAt(i) >= 160 && input.charCodeAt(i) <= 255) {
output += input.charAt(i);
}
}
return output;
}
function onMessage(event) {
var data = JSON.parse(event.data);
if(data.nameset) document.getElementById('nameset').innerHTML = data.nameset;
if(data.meta) document.getElementById('meta').innerHTML = cleanString(data.meta);
if(data.meta) document.getElementById('meta').innerHTML = data.meta;
if(data.vol) {
setVolRangeValue(document.getElementById('volrange'),data.vol);
}

View File

@@ -408,9 +408,16 @@ a:hover { text-decoration: underline }
-moz-appearance: none;
box-sizing: border-box;
}
#volrange::-webkit-slider-thumb, .slider::-webkit-slider-thumb, #volrange::-moz-range-thumb, .slider::-moz-range-thumb {
#volrange::-webkit-slider-thumb, .slider::-webkit-slider-thumb {
width: 10px;
-webkit-appearance: none;
height: 10px;
cursor: ew-resize;
background-color: transparent;
border: 0;
}
#volrange::-moz-range-thumb, .slider::-moz-range-thumb {
width: 10px;
-moz-appearance: none;
height: 10px;
cursor: ew-resize;