mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 21:35:04 +02:00
Merge pull request #10348 from ctrlaltdavid/21311
Don't sort recordings
This commit is contained in:
commit
ecd690e5e9
1 changed files with 0 additions and 6 deletions
|
@ -53,10 +53,6 @@ function updatePlayersUnused() {
|
||||||
elPlayersUnused.innerHTML = numberOfPlayers - recordingsBeingPlayed.length;
|
elPlayersUnused.innerHTML = numberOfPlayers - recordingsBeingPlayed.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
function orderRecording(a, b) {
|
|
||||||
return a.filename > b.filename ? 1 : -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateRecordings() {
|
function updateRecordings() {
|
||||||
var tbody,
|
var tbody,
|
||||||
tr,
|
tr,
|
||||||
|
@ -68,8 +64,6 @@ function updateRecordings() {
|
||||||
i,
|
i,
|
||||||
HIFI_GLYPH_CLOSE = "w";
|
HIFI_GLYPH_CLOSE = "w";
|
||||||
|
|
||||||
recordingsBeingPlayed.sort(orderRecording);
|
|
||||||
|
|
||||||
tbody = document.createElement("tbody");
|
tbody = document.createElement("tbody");
|
||||||
tbody.id = "recordings-list";
|
tbody.id = "recordings-list";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue