How is it possible to limit the maxHeight of the popup?
Tried the following code.. but hs.maxHeight=600; has no effect.
Code: Select all
var expander=hs.getExpander();
hs.maxHeight=600;
expander.reflow();
Code: Select all
var expander=hs.getExpander();
hs.maxHeight=600;
expander.reflow();
Code: Select all
jq('.highslide_body_container').find('div:first').css('max-height', '600px');
expander.reflow();