Update item.tpl.html

This commit is contained in:
noxy 2016-10-20 22:40:55 +00:00
parent 384558027a
commit 055ada07d2

View File

@ -21,7 +21,7 @@
{% elseif item == "audio" %} {% elseif item == "audio" %}
<audio id="audioplayer" controls loop src="{{ dest }}" type="audio/mp3" autoplay></audio> <audio id="audio" controls loop src="{{ dest }}" type="audio/mp3" autoplay></audio>
{% elseif item == "image" %} {% elseif item == "image" %}
<a href="{{ dest }}" target="_blank"><img src="{{ dest }}" style="max-width: 1024px" /></a> <a href="{{ dest }}" target="_blank"><img src="{{ dest }}" style="max-width: 1024px" /></a>
{% else %} {% else %}
@ -67,9 +67,8 @@
var video = document.getElementById('player'); var video = document.getElementById('player');
video.volume = 0.3; video.volume = 0.3;
setVolume = function(id,vol) { var x = document.getElementById("audio");
sounds[audio].volume = 0.3; // vol between 0 and 1 x.volume = 0.2;
}
</script> </script>
</body> </body>
<! Fuck git… seriously--> <! Fuck git… seriously-->