331
| <![CDATA[<script>
var url_atual = window.location.href;
//console.log(url_atual);
//console.log("http://www.ordempublica.salvador.ba.gov.br/");
if(url_atual == "http://www.ordempublica.salvador.ba.gov.br/" || url_atual == "http://www.ordempublica.salvador.ba.gov.br/"+"index.php"){
$('#exampleModal2').modal('show');
var maskHeight = jQuery(document).height();
var maskWidth = jQuery(window).width();
jQuery('#mask').css({'width':maskWidth,'height':maskHeight});
jQuery('#mask').fadeIn(1000);
jQuery('#mask').fadeTo("slow",0.7);
//Get the window height and width
var winH = jQuery(window).height();
var winW = jQuery(window).width();
jQuery('#dialog2').css('top', winH/2-$('#dialog2').height()/2);
jQuery('#dialog2').css('left', winW/2-$('#dialog2').width()/2);
jQuery('#dialog2').fadeIn(2000);
}
jQuery('.window .close').click(function (e) {
e.preventDefault();
jQuery('#mask').hide();
jQuery('.window').hide();
});
</script>]]>
|