Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRoehm committed Apr 7, 2023
1 parent 8ac5635 commit adfd039
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions components/AudioPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,6 @@ export default defineComponent({
audio.value.playbackRate = playbackRate.value
}
function _handleLoaded(e) {
console.log(e)
console.log(audio.value.readyState)
if (!loaded.value && audio.value.readyState >= 1 || preload.value == null) {
if (props.autoPlay) this.play();
loaded.value = true;
Expand Down

0 comments on commit adfd039

Please sign in to comment.