Events Calendar Bug
Events calendar month view overruns.
Replicate:
- Go to https://dev.stat.osu.edu/events
- Click on the title of the current month in the little calendar
- Use the red arrows to cycle back to April 2017
Does not appear to be an issue if you cycle back with the white arrows in the calendar and click a different month's title and use the red arrows to move months. If that makes sense.
Comments:
- Could be due to 'equal heights' jquery library that is sourced from omega theme base. Perhaps update this theme or add something like following (from: https://www.drupal.org/node/1431378 )
jQuery(document).ajaxSuccess(function(){
(function($) {
/**
* @rerun equalHeights on Ajax
*/
$(this).trigger('resize.omegaequalheights');
})(jQuery);
}); (Sean Quigley - May 26, 2017)
- @evadale I think we need to try updating the base theme, to my knowledge we've never done that so Omega may have gotten fixes for this and other issues. (Chris Wallace - Jun 6, 2017)