fixed image display
This commit is contained in:
parent
bf77abb0c1
commit
5e85ef39eb
|
@ -115,17 +115,20 @@ function SubmitForm(id, e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function addResizeHandler(item, min, max) {
|
function addResizeHandler(item, min, max) {
|
||||||
jQuery(item).toggle(
|
jQuery(item).click(
|
||||||
function(){
|
function() {
|
||||||
jQuery(item).animate({
|
if (jQuery(item).hasClass('imgExpanded')) {
|
||||||
height: max
|
|
||||||
});
|
|
||||||
},
|
|
||||||
function(){
|
|
||||||
jQuery(item).animate({
|
jQuery(item).animate({
|
||||||
height: min
|
height: min
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
jQuery(item).animate({
|
||||||
|
height: max
|
||||||
|
});
|
||||||
|
}
|
||||||
|
jQuery(item).toggleClass('imgExpanded');
|
||||||
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue