We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When I resize the item from the end time the onEnd event triggers once, but triggers twice when resize from start time.
gantt-schedule-timeline-calendar version 3.6.6
The text was updated successfully, but these errors were encountered:
I found out the problem. I think you will see the failure ;)
onPointerUp() { "resize" === this.data.state && (this.data.state = "end"), this.onLeftPointerUp(), this.onRightPointerUp(), this.onEnd(), this.updateData(), this.api.plugins.TimelinePointer.unlock("down"), this.api.plugins.TimelinePointer.unlock("move"), this.api.plugins.TimelinePointer.unlock("up") } onLeftPointerUp() { document.body.classList.remove(this.data.bodyClassLeft), this.data.enabled && this.data.leftIsMoving && (this.data.leftIsMoving = !1, this.onEnd(), this.updateData()) } onRightPointerUp() { document.body.classList.remove(this.data.bodyClassRight), this.data.enabled && this.data.rightIsMoving && (this.data.rightIsMoving = !1) }
@neuronetio it would be nice when you can fix it ;)
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When I resize the item from the end time the onEnd event triggers once, but triggers twice when resize from start time.
gantt-schedule-timeline-calendar version
3.6.6
The text was updated successfully, but these errors were encountered: