Never mind, more errors than needed, I only needed title anyway.
This commit is contained in:
@ -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>
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user