Skip to content

Question about the #7665 bug #3

@phazei

Description

@phazei

I found this solution to the issue on stackoverflow:
http://stackoverflow.com/a/16540688/65985

Would a simple possible fix simply to change it from:

    if ( startXPos !== event.pageX || startYPos !== event.pageY ) {
        clickDragged = true;
    }

to

    if (       ( startXPos > event.pageX + 4 || startXPos < event.pageX - 4 )
            || ( startYPos > event.pageY + 4 || startYPos < event.pageY - 4 ) ) {
        clickDragged = true;
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions