Fix reference in sort button code
This commit is contained in:
parent
5100ecc634
commit
f21213d673
|
@ -17,12 +17,12 @@ window.onload = function(){
|
||||||
if (location.search.search("byturn") > 0)
|
if (location.search.search("byturn") > 0)
|
||||||
{
|
{
|
||||||
document.getElementById("turn-order").style.display = "block";
|
document.getElementById("turn-order").style.display = "block";
|
||||||
b.innerText = "Switch to index order";
|
document.getElementById("toggle-button").innerText = "Switch to index order";
|
||||||
}
|
}
|
||||||
if (location.search.search("byindex") > 0)
|
if (location.search.search("byindex") > 0)
|
||||||
{
|
{
|
||||||
document.getElementById("index-order").style.display = "block";
|
document.getElementById("index-order").style.display = "block";
|
||||||
b.innerText = "Switch to turn order";
|
document.getElementById("toggle-button").innerText = "Switch to turn order";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue