mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
Allow tabbing through skins
This commit is contained in:
parent
38ace450d2
commit
f4dfceface
1 changed files with 4 additions and 1 deletions
|
|
@ -29,7 +29,9 @@ export default class Skin extends React.Component {
|
|||
return (
|
||||
<a
|
||||
className={"skin"}
|
||||
ref={node => (this._ref = node)}
|
||||
ref={node => {
|
||||
this._ref = node;
|
||||
}}
|
||||
style={{
|
||||
position: "absolute",
|
||||
// Ideally the final backgroundColor would be black
|
||||
|
|
@ -51,6 +53,7 @@ export default class Skin extends React.Component {
|
|||
href={Utils.getPermalinkUrlFromHash(this.props.hash)}
|
||||
>
|
||||
<img
|
||||
tabIndex={1}
|
||||
src={this.props.src}
|
||||
style={{
|
||||
imageRendering:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue