fancybox version: 2.1.0
description: I don't want to upgrade to version 3 because it will affect the others.
So how can the minHeight
and maxHeight
values be effective in the current version?
I tried the following method, but it didn't work.
//source code
$.fancybox.open({
href: '#advancedSearchWrapper',
maxHeight: 500,
minHeight: 300,
fitToView: true,
autoSize: true,
modal: true,
autoScale: true,
)}
To make
minHeight
andmaxHeight
options effective you need to setautoSize
option tofalse
.