When this.gantt.bar_being_dragged is compared to null, there are no problems with showing the pop-up after resizing the progress bar.
Before changes:
if (this.gantt.bar_being_dragged) return;
After changes:
if (this.gantt.bar_being_dragged == null) return;
Additionally, in set_action_completed(), it seems that the delay in setTimeout() is too big. By reducing it, the user can see the pop-up on the screen after resizing bars with no bugs.
Values changed -> From 1000 to 200
When this.gantt.bar_being_dragged is compared to null, there are no problems with showing the pop-up after resizing the progress bar.
Before changes: if (this.gantt.bar_being_dragged) return;
After changes: if (this.gantt.bar_being_dragged == null) return;
Additionally, in set_action_completed(), it seems that the delay in setTimeout() is too big. By reducing it, the user can see the pop-up on the screen after resizing bars with no bugs. Values changed -> From 1000 to 200
These adjustments should solve issue https://github.com/frappe/gantt/issues/319
README.md file update: Enhancement of instructions in third step of Contributing Section.
Please let me know if everything works fine. Feedback is much appreciated. Thank you!