function miMediaQuery() { } function elementosQueAplicanJQuery() { if( $(".divsConTitle").length ){ $(".divsConTitle").tipTip(); } if( $(".ingreso_dato_number").length ){ $(".ingreso_dato_number").numeric(); } } $(document).ready(function(){ elementosQueAplicanJQuery(); }); function getMiLoginComun_1() { cargarContenidoDinamico( '/usuarios/login','sinLayout=1' ); return false; } $(window).resize(function(){ var screenWidth = $(window).width(); var screenHeight = $(window).height(); var contenedorWidth = $('#contenedor').outerWidth(); var contenedorHeight = $('#contenedor').outerHeight(); if( $('#divOverlay').length ){ maxWidth = ( contenedorWidth > screenWidth ) ? contenedorWidth : screenWidth; maxHeight = ( contenedorHeight > screenHeight ) ? (contenedorHeight+10) : screenHeight; $('#divOverlay').css("width", maxWidth); $('#divOverlay').css("height", maxHeight); } var haymiPopup = false; if( $('#miPopup').length ){ haymiPopup = 'miPopup'; } if( haymiPopup != false ){ var miPopupWidth = $('#'+haymiPopup).outerWidth(); var miPopupHeight = $('#'+haymiPopup).outerHeight(); var posLeft = ( screenWidth - miPopupWidth ) / 2; var posTop = ( screenHeight - miPopupHeight ) / 2; $('#'+haymiPopup).css("left", posLeft+'px'); $('#'+haymiPopup).css("top", posTop+'px'); colocarScrollBarSiPrecisa( haymiPopup+'_contenido' ); } }); /* Redefino la fn que existe en generales.phtml, pues para el colegio, al estar dentro de un iframe, la altura donde se muestra, no debe ser central, sino más bien, próxima al top. */ function centrarHV_2( div ) { if( !$('#'+div).length ){ return; } var screenWidth = $(window).width(); var screenHeight =$(window).height(); var screenHeight = window.innerHeight; var divWidth = $("#"+div).outerWidth() ; var divHeight = $("#"+div).outerHeight() ; var posLeft = Math.round( ( screenWidth-divWidth ) /2 ); var posTop = Math.round( ( screenHeight-divHeight ) /2 ); var x = posLeft+'px'; var y = posTop+'px'; //////////////////////////////////////////////////////////////////////////// y = '150px'; //////////////////////////////////////////////////////////////////////////// $("#"+div).css({'left':x, 'top':y }); }