delete forgot symbol in html

This commit is contained in:
Dryusdan 2017-06-28 00:02:04 +02:00
parent 58890f913e
commit df60973c62
1 changed files with 4 additions and 11 deletions

View File

@ -195,7 +195,7 @@ $('#expose').on('click', function(){
$('#play').html('Écouter l\'interview');
$('#play').attr('data-action', 'play');
$('.expose').html('Télécharger l\'interview');
$('body').append('<div id="player"><div id="waveform">d</div>"></div>');
$('body').append('<div id="player"><div id="waveform"></div></div>');
var wavesurfer = Object.create(WaveSurfer);
// Init
@ -204,8 +204,9 @@ $('#expose').on('click', function(){
waveColor: '#3b75ad',
progressColor: '#304559',
backend: 'MediaElement',
height: 20,
barHeight: 50
height: 85,
pixelRatio: 1,
barWidth: 1,
});
// Load audio from URL
wavesurfer.load('assets/audio/interview.mp3');
@ -214,12 +215,4 @@ $('#expose').on('click', function(){
'[data-action="play"]'
).addEventListener('click', wavesurfer.playPause.bind(wavesurfer));
document.querySelector(
'[data-action="peaks"]'
).addEventListener('click', function () {
wavesurfer.load('assets/audio/Rip_Tear.mp3', [
0.0218, 0.0183, 0.0165, 0.0198, 0.2137, 0.2888, 0.2313, 0.15, 0.2542, 0.2538, 0.2358, 0.1195, 0.1591, 0.2599, 0.2742, 0.1447, 0.2328, 0.1878, 0.1988, 0.1645, 0.1218, 0.2005, 0.2828, 0.2051, 0.1664, 0.1181, 0.1621, 0.2966, 0.189, 0.246, 0.2445, 0.1621, 0.1618, 0.189, 0.2354, 0.1561, 0.1638, 0.2799, 0.0923, 0.1659, 0.1675, 0.1268, 0.0984, 0.0997, 0.1248, 0.1495, 0.1431, 0.1236, 0.1755, 0.1183, 0.1349, 0.1018, 0.1109, 0.1833, 0.1813, 0.1422, 0.0961, 0.1191, 0.0791, 0.0631, 0.0315, 0.0157, 0.0166, 0.0108
]);
document.body.scrollTop = 0;
});
});