Fix method name

This commit is contained in:
An Phan 2016-01-31 23:59:06 +08:00
parent 5c7066dd30
commit 483c996aa5

View file

@ -1,6 +1,6 @@
<template>
<tr
@dblclick.prevent="playRighAwayyyyyyy"
@dblclick.prevent="playRightAwayyyyyyy"
class="song-item"
:class="{ selected: selected, playing: playbackState === 'playing' || playbackState === 'paused' }"
>
@ -33,7 +33,7 @@
/**
* Play the song right away.
*/
playRighAwayyyyyyy() {
playRightAwayyyyyyy() {
if (!queueStore.contains(this.song)) {
queueStore.queueAfterCurrent(this.song);
}
@ -53,7 +53,7 @@
playback.resume();
break;
default:
this.playRighAwayyyyyyy();
this.playRightAwayyyyyyy();
break;
}
},