This commit is contained in:
syuilo 2018-03-06 18:06:45 +09:00
parent 8886b24f30
commit 043cbcf6f5
3 changed files with 24 additions and 3 deletions

View file

@ -96,7 +96,9 @@ export default Vue.extend({
onPost(post) {
//
if ((this as any).os.isEnableSounds) {
new Audio(`${url}/assets/post.mp3`).play();
const sound = new Audio(`${url}/assets/post.mp3`);
sound.volume = localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) / 100 : 1;
sound.play();
}
this.posts.unshift(post);