- First commit to issue fork.
- Issue was unassigned.
- Status changed to Needs review
over 1 year ago 11:44pm 18 December 2023
Issue:
Easychart is not loading properly when present in an AJAX loaded content.
Reason:
jQuery selectors with the Drupal behaviors attach method are not scoped properly
easychart.render.js:10
var $container = $('.easychart-embed--' + key)[0];
Solution:
Scope jQuery selectors using the `context` passed by Drupal behaviors
easychart.render.js:10
var $container = $('.easychart-embed--' + key, context)[0];
Needs review
3.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.