mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-13 20:31:48 +00:00
title added to PlayPauseButton
This commit is contained in:
parent
85d0259b45
commit
83ae8ba5fb
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ const PlayPauseButton = ({ className, paused, dispatch }) => {
|
|||
}
|
||||
}, [paused, dispatch]);
|
||||
return (
|
||||
<Button className={classnames(className, { 'disabled': typeof paused !== 'boolean' })} tabIndex={-1} onClick={togglePaused}>
|
||||
<Button className={classnames(className, { 'disabled': typeof paused !== 'boolean' })} title={paused ? 'Play' : 'Pause'} tabIndex={-1} onClick={togglePaused}>
|
||||
<Icon
|
||||
className={'icon'}
|
||||
icon={typeof paused !== 'boolean' || paused ? 'ic_play' : 'ic_pause'}
|
||||
|
|
|
|||
Loading…
Reference in a new issue