estilos popup
This commit is contained in:
parent
85051924b7
commit
8619adbf4c
|
@ -63,14 +63,6 @@ $(document).ready (function () {
|
|||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
|
||||
$("#opacidad").css('opacity', 0.5);
|
||||
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "include/ajax/config.ajax",
|
||||
"token_name": 'visual_animation'
|
||||
},
|
||||
function (data, status) {
|
||||
|
||||
if(data){
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "operation/system_alert"},
|
||||
|
@ -82,25 +74,6 @@ $(document).ready (function () {
|
|||
},
|
||||
"html"
|
||||
);
|
||||
return false;
|
||||
} else {
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "operation/system_alert"},
|
||||
function (data, status) {
|
||||
$("#alert_messages").hide ()
|
||||
.empty ()
|
||||
.append (data)
|
||||
.show ()
|
||||
.css('opacity', 1);
|
||||
},
|
||||
"html"
|
||||
);
|
||||
return false;
|
||||
}
|
||||
},
|
||||
"html"
|
||||
);
|
||||
});
|
||||
|
||||
$("a.modalpopup").click (function () {
|
||||
|
@ -108,13 +81,6 @@ $(document).ready (function () {
|
|||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
|
||||
$("#opacidad").css('opacity', 0.5);
|
||||
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "include/ajax/config.ajax",
|
||||
"token_name": 'visual_animation'
|
||||
},
|
||||
function (data, status) {
|
||||
if(data){
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "general/alert_enterprise",
|
||||
|
@ -128,26 +94,6 @@ $(document).ready (function () {
|
|||
"html"
|
||||
);
|
||||
return false;
|
||||
} else {
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "general/alert_enterprise",
|
||||
"message": elem
|
||||
},
|
||||
function (data, status) {
|
||||
$("#alert_messages").hide ()
|
||||
.empty ()
|
||||
.append (data)
|
||||
.show ()
|
||||
.css('opacity', 1);
|
||||
},
|
||||
"html"
|
||||
);
|
||||
return false;
|
||||
}
|
||||
},
|
||||
"html"
|
||||
);
|
||||
});
|
||||
|
||||
// Creacion de ventana modal y botones
|
||||
|
@ -156,13 +102,6 @@ $(document).ready (function () {
|
|||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
|
||||
$("#opacidad").css('opacity', 0.5);
|
||||
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "include/ajax/config.ajax",
|
||||
"token_name": 'visual_animation'
|
||||
},
|
||||
function (data, status) {
|
||||
if(data){
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "general/alert_enterprise",
|
||||
|
@ -176,42 +115,23 @@ $(document).ready (function () {
|
|||
"html"
|
||||
);
|
||||
return false;
|
||||
} else {
|
||||
});
|
||||
|
||||
|
||||
$(".publienterprisehide").click (function () {
|
||||
var elem = $(this).attr("id");
|
||||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
|
||||
$("#opacidad").css('opacity', 0.5);
|
||||
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "general/alert_enterprise",
|
||||
"message": elem
|
||||
},
|
||||
function (data, status) {
|
||||
$("#alert_messages").hide ()
|
||||
.empty ()
|
||||
.append (data)
|
||||
.show ()
|
||||
.css('opacity', 1);
|
||||
},
|
||||
"html"
|
||||
);
|
||||
return false;
|
||||
}
|
||||
},
|
||||
"html");
|
||||
});
|
||||
|
||||
|
||||
$(".publienterprisehide").click (function () {
|
||||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
|
||||
$("#opacidad").css('opacity', 0.5);
|
||||
jQuery.post ("ajax.php",
|
||||
{
|
||||
"page": "general/alert_enterprise",
|
||||
"message": $(this).attr("id")
|
||||
},
|
||||
function (data, status) {
|
||||
$("#alert_messages").hide ()
|
||||
.empty ()
|
||||
.append (data)
|
||||
.show ()
|
||||
.css('opacity', 1);;
|
||||
$("#alert_messages").toggle();
|
||||
$("#alert_messages").empty ().append (data);
|
||||
$("#alert_messages").css('opacity', 1);
|
||||
},
|
||||
"html"
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue