mirror of
https://github.com/nymurbd/MikroTik-scripts.git
synced 2025-07-15 12:34:29 +02: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);
|
|
}
|