forked from nutomic/joinpeertube
Shuffle instances
This commit is contained in:
parent
6ed5bd68dd
commit
775333719d
1 changed files with 11 additions and 1 deletions
|
@ -10,7 +10,7 @@ $(function () {
|
|||
|
||||
$.get(instancesApi, data)
|
||||
.done(function (res) {
|
||||
const instances = res.data
|
||||
const instances = shuffle(res.data)
|
||||
|
||||
const lis = []
|
||||
instances.forEach(function (instance) {
|
||||
|
@ -80,4 +80,14 @@ $(function () {
|
|||
|
||||
return a
|
||||
}
|
||||
|
||||
// Thanks https://stackoverflow.com/a/6274381
|
||||
function shuffle (a) {
|
||||
for (var i = a.length - 1; i > 0; i--) {
|
||||
const j = Math.floor(Math.random() * (i + 1));
|
||||
[a[i], a[j]] = [a[j], a[i]]
|
||||
}
|
||||
|
||||
return a
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue