Never mind, more errors than needed, I only needed title anyway.

This commit is contained in:
2018-08-14 21:32:35 +10:00
parent e85292ef33
commit 962bc597fe

View File

@ -125,11 +125,9 @@ export default class Image extends React.Component {
} }
return ( return (
//HEY DOM: try putting the img tag within a this.image or something so we can just reference the image object? .complete may work??
<picture> <picture>
{ sourceElements } { sourceElements }
<img <img
{ ...sourceProps }
onLoad={ this.onLoad.bind(this) } onLoad={ this.onLoad.bind(this) }
onError={ this.onError.bind(this) } onError={ this.onError.bind(this) }
src={ defaultSrc } src={ defaultSrc }
@ -137,6 +135,7 @@ export default class Image extends React.Component {
className={ sourceProps.className } className={ sourceProps.className }
width={ defaultWidth } width={ defaultWidth }
height={ defaultHeight } height={ defaultHeight }
title={sourceProps.title}
/> />
</picture> </picture>
); );