|
|
|
@ -159,7 +159,7 @@ class Item extends React.PureComponent {
|
|
|
|
|
if (attachment.get('type') === 'unknown') {
|
|
|
|
|
return (
|
|
|
|
|
<div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={{ left: left, top: top, right: right, bottom: bottom, width: `${width}%`, height: `${height}%` }}>
|
|
|
|
|
<a className='media-gallery__item-thumbnail' href={attachment.get('remote_url')} target='_blank' style={{ cursor: 'pointer' }} title={attachment.get('description')}>
|
|
|
|
|
<a className='media-gallery__item-thumbnail' href={attachment.get('remote_url') || attachment.get('url')} target='_blank' style={{ cursor: 'pointer' }} title={attachment.get('description')}>
|
|
|
|
|
<canvas width={32} height={32} ref={this.setCanvasRef} className='media-gallery__preview' />
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
@ -342,7 +342,7 @@ class MediaGallery extends React.PureComponent {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className='media-gallery' style={style} ref={this.handleRef}>
|
|
|
|
|
<div className={classNames('spoiler-button', { 'spoiler-button--minified': visible && !uncached })}>
|
|
|
|
|
<div className={classNames('spoiler-button', { 'spoiler-button--minified': visible && !uncached, 'spoiler-button--click-thru': uncached })}>
|
|
|
|
|
{spoilerButton}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|