diff --git a/src/arenas/tron/js.js b/src/arenas/tron/js.js index 060fa27..d691dac 100644 --- a/src/arenas/tron/js.js +++ b/src/arenas/tron/js.js @@ -15,15 +15,8 @@ function tron(bot1,bot2,xdcheck){ var mapImg = createElem('svg',{'alt' : 'map','width':'200','height':'200'}); // "circle" may be any tag name - var shape = document.createElementNS("http://www.w3.org/2000/svg", "circle"); - // Set any attributes as desired - shape.setAttribute("cx", 25); - shape.setAttribute("cy", 25); - shape.setAttribute("r", 20); - shape.setAttribute("fill", "green"); - // Add to a parent node; document.documentElement should be the root svg element. - // Acquiring a parent element with document.getElementById() would be safest. - mapImg.appendChild(shape); + mapImg.innerHTML = ''; + document.getElementById('fightResult').appendChild(mapImg); }