Making WordPress.org


Ignore:
Timestamp:
12/08/2016 02:21:46 PM (8 years ago)
Author:
obenland
Message:

Plugin Directory: Link to image rather than expanding it.

Fixes #2316.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/components/plugin/sections/screenshots/image-gallery/index.jsx

    r4223 r4506  
    442442        return (
    443443            <figure className="image-gallery-image">
    444                 <img
    445                     src={ item.original }
    446                     alt={ item.originalAlt }
    447                     srcSet={ item.srcSet }
    448                     sizes={ item.sizes }
    449                     onLoad={ this.props.onImageLoad }
    450                     onError={ this._handleImageError.bind( this ) }
    451                 />
     444                <a href={ item.original }>
     445                    <img
     446                        src={ item.original }
     447                        alt={ item.originalAlt }
     448                        srcSet={ item.srcSet }
     449                        sizes={ item.sizes }
     450                        onLoad={ this.props.onImageLoad }
     451                        onError={ this._handleImageError.bind( this ) }
     452                    />
     453                </a>
    452454                {
    453455                    item.description &&
Note: See TracChangeset for help on using the changeset viewer.