mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
fix music player
This commit is contained in:
parent
8b0e33e46f
commit
d095678478
@ -4,23 +4,25 @@ $(".video-self").tubeplayer({
|
||||
height: 0.001,
|
||||
initialVideo: "UE9fPWy1_o4",
|
||||
autoPlay: true,
|
||||
onPlayerPlaying: function(id){
|
||||
if(localStorage.getItem('volume') == 'off') {
|
||||
$('.music-icon').removeClass('active');
|
||||
$(".video-self").tubeplayer('mute');
|
||||
}
|
||||
|
||||
if(localStorage.getItem('volumeValue') != null) {
|
||||
$('.video-self').tubeplayer('volume', localStorage.getItem('volumeValue'));
|
||||
$('.volume').val(localStorage.getItem('volumeValue'));
|
||||
} else {
|
||||
$('.volume').val('75');
|
||||
$('.video-self').tubeplayer('volume', 75);
|
||||
}
|
||||
},
|
||||
onPlayerEnded: function(){
|
||||
$(".video-self").tubeplayer('play');
|
||||
}
|
||||
});
|
||||
|
||||
if(localStorage.getItem('volume') == 'off') {
|
||||
$('.music-icon').removeClass('active');
|
||||
}
|
||||
|
||||
if(localStorage.getItem('volumeValue') != null) {
|
||||
$('.video-self').tubeplayer('volume', localStorage.getItem('volumeValue'));
|
||||
$('.volume').val(localStorage.getItem('volumeValue'));
|
||||
} else {
|
||||
$('.volume').val('75');
|
||||
$('.video-self').tubeplayer('volume', 75);
|
||||
}
|
||||
|
||||
// Set volume.
|
||||
$('.volume').on('blur', function() {
|
||||
var val = $(this).val();
|
||||
|
Loading…
Reference in New Issue
Block a user