mirror of
https://github.com/nymurbd/MikroTik-scripts.git
synced 2025-07-11 10:34:31 +02:00
6 lines
283 B
JavaScript
6 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);
|
||
|
}
|