I did have to modify the show/hide script. There was a but where div and span tags would be hidden by the script if they were contained within a shContent section. I had to modify the conditional that checked the class type of the tags. It was only checking for one condition and if the conditional failed that test blindly applying the opposite. I changed it so that the conditional tested on both possible states.
Regarding that same conditional, I should change it so that the class value is search for (e.g. using
indexOf
) rather than doing an outright equality comparison. Something to keep in mind for future upates.