More Moving

This commit is contained in:
Kyle
2018-10-13 10:22:46 -07:00
parent 88fd6fed52
commit 2c3ad26169
172 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
//loadColors("white-White,blue-Blue,colorlessLand-Colorless Land,gold-Gold")
function loadColors(colors) {
var endResult = ""
var colorList = colors.split(",")
for (i = 0; i < colorList.length; i++) {
endResult += "<option value='" + colorList[i].split("-")[0] + "'>" + colorList[i].split("-")[1] + "</option>"
}
document.getElementById("colorSelection").innerHTML = endResult
}