mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-06 18:09:28 +00:00
5 lines
283 B
JavaScript
5 lines
283 B
JavaScript
function color() {
|
|
var svg = document.querySelector(".logo").getSVGDocument();
|
|
svg.getElementById("dark-1").setAttribute("stop-color", document.getElementById("color1").value);
|
|
svg.getElementById("dark-2").setAttribute("stop-color", document.getElementById("color2").value);
|
|
}
|