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
If i use own react wrapper the gantt-container div created 2 times with corresponding inside divs.
Could you plz add for that code checks for existing it like with svg you have
// wrapper element this.$container = document.createElement('div'); this.$container.classList.add('gantt-container');
to
// wrapper element this.$container = document.querySelector('.gantt-container'); if (!this.$container) { this.$container = document.createElement('div'); this.$container.classList.add('gantt-container'); }
and
// popup wrapper this.popup_wrapper = document.createElement('div'); this.popup_wrapper.classList.add('popup-wrapper'); this.$container.appendChild(this.popup_wrapper);
this.popup_wrapper = this.$container.querySelector('.popup-wrapper'); if (!this.popup_wrapper) { this.popup_wrapper = document.createElement('div'); this.popup_wrapper.classList.add('popup-wrapper'); this.$container.appendChild(this.popup_wrapper); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If i use own react wrapper the gantt-container div created 2 times with corresponding inside divs.
Could you plz add for that code checks for existing it like with svg you have
to
and
to
The text was updated successfully, but these errors were encountered: