Показать сообщение отдельно
  #8 (permalink)  
Старый 17.04.2014, 20:18
Аспирант
Отправить личное сообщение для culver Посмотреть профиль Найти все сообщения от culver
 
Регистрация: 10.05.2012
Сообщений: 52

var croppingFormBox = {
	show: function(){
		alert($('#owner_photo_thumb').height());
		if ($(window).height()>($('#owner_photo_thumb').height()+120))
			$('#box_layer_bg').css("height", $(window).height());
		else
			$('#box_layer_bg').css("height", $('#owner_photo_thumb').height()+120);
			
		alert($('#box_layer_bg').height());
		$('#box_layer_bg').css("width", $(window).width());
		$('#box_layer_wrap').css("width", $(window).width());
		$('#box_layer_bg').css("display", "block");
		$('#box_layer_wrap').css("display", "block");
	}, 
	hide: function(){
		$('#box_layer_bg').css("display", "none");
		$('#box_layer_wrap').css("display", "none");
	} 
}
Ответить с цитированием