Actions
Bug #5726
closedLarge amount of conditions causes massive page load times
Description
This is due to .change() being used to trigger the initial conditions. The problem with that is it bubbles up the entire DOM chain and is really slow. What it needs to do is actually just call the conditionElement function on the target directly to do the initial conditioning properly.
Actions