Making WordPress.org

Ticket #5230: 5230.diff

File 5230.diff, 1.1 KB (added by dufresnesteven, 4 years ago)

It's happening because both the touch event & click event are firing. This patch removes the touch event. I'm not certain why it would be necessary. I'm curious if anyone thinks we need to keep it.

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

    diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/components/plugin/sections/screenshots/image-gallery/index.jsx wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/components/plugin/sections/screenshots/image-gallery/index.jsx
    index 2bb272c92..0f8fcb752 100644
    export default class ImageGallery extends React.Component { 
    537537                                                                                <button
    538538                                                                                        type="button"
    539539                                                                                        className="button-link image-gallery-left-nav"
    540                                                                                         onTouchStart={ slideLeft }
    541540                                                                                        onClick={ slideLeft }/>
    542541                                                                        }
    543542                                                                        {
    export default class ImageGallery extends React.Component { 
    545544                                                                                <button
    546545                                                                                        type="button"
    547546                                                                                        className="button-link image-gallery-right-nav"
    548                                                                                         onTouchStart={ slideRight }
    549547                                                                                        onClick={ slideRight }/>
    550548                                                                        }
    551549                                                                </span>,