mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:24:07 +02:00
Don't sort recordings
This commit is contained in:
parent
67daa4b0a9
commit
cb8f75394d
1 changed files with 0 additions and 6 deletions
|
@ -53,10 +53,6 @@ function updatePlayersUnused() {
|
|||
elPlayersUnused.innerHTML = numberOfPlayers - recordingsBeingPlayed.length;
|
||||
}
|
||||
|
||||
function orderRecording(a, b) {
|
||||
return a.filename > b.filename ? 1 : -1;
|
||||
}
|
||||
|
||||
function updateRecordings() {
|
||||
var tbody,
|
||||
tr,
|
||||
|
@ -68,8 +64,6 @@ function updateRecordings() {
|
|||
i,
|
||||
HIFI_GLYPH_CLOSE = "w";
|
||||
|
||||
recordingsBeingPlayed.sort(orderRecording);
|
||||
|
||||
tbody = document.createElement("tbody");
|
||||
tbody.id = "recordings-list";
|
||||
|
||||
|
|
Loading…
Reference in a new issue