diff --git a/index.html b/index.html index 7d62981..1875b29 100644 --- a/index.html +++ b/index.html @@ -60,9 +60,7 @@ - + @@ -423,10 +421,10 @@ var video_button = document.getElementById('video-sound'); if(player.isMuted()){ player.unMute(); - video_button.children[0].children[0].setAttribute("xlink:href", "/vector/sprite.svg#sound-on"); + video_button.children[0].setAttribute("src", "vector/sound-on.svg"); } else { player.mute(); - video_button.children[0].children[0].setAttribute("xlink:href", "/vector/sprite.svg#sound-off"); + video_button.children[0].setAttribute("src", "vector/sound-off.svg"); } }