This website works better with JavaScript.
Home
Explore
Help
Sign In
nekobus
/
mastodon_neko
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Audio.prototype.seek is undefined (
#5935
)
master
Yamagishi Kazutoshi
7 years ago
committed by
Eugen Rochko
parent
86b4d5439c
commit
f08e6e9ab5
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/javascript/mastodon/middleware/sounds.js
+ 1
- 1
app/javascript/mastodon/middleware/sounds.js
View File
@ -15,7 +15,7 @@ const play = audio => {
if
(
typeof
audio
.
fastSeek
===
'function'
)
{
audio
.
fastSeek
(
0
)
;
}
else
{
audio
.
seek
(
0
)
;
audio
.
currentTime
=
0
;
}
}
Write
Preview
Loading…
Cancel
Save