Merge branch '875-alert-window-dont-work-dev' into 'develop'
Fixed jquery request See merge request !468
This commit is contained in:
commit
88ccb3b364
|
@ -15,7 +15,7 @@ if(!enterprise_installed()){
|
||||||
$open=true;
|
$open=true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$tipo = $_GET['message'];
|
$tipo = $_POST['message'];
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
<div class='modalheader'>
|
<div class='modalheader'>
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
|
|
||||||
$(document).ready (function () {
|
$(document).ready (function () {
|
||||||
$("a#show_messages_dialog").click (function () {
|
$("a#show_messages_dialog").click (function () {
|
||||||
jQuery.get ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{"page": "operation/messages/message_list"},
|
{"page": "operation/messages/message_list"},
|
||||||
function (data, status) {
|
function (data, status) {
|
||||||
$("#dialog_messages").hide ()
|
$("#dialog_messages").hide ()
|
||||||
|
@ -60,7 +60,7 @@ $(document).ready (function () {
|
||||||
|
|
||||||
$("a.show_systemalert_dialog").click (function () {
|
$("a.show_systemalert_dialog").click (function () {
|
||||||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
||||||
jQuery.get ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{"page": "operation/system_alert"},
|
{"page": "operation/system_alert"},
|
||||||
function (data, status) {
|
function (data, status) {
|
||||||
$("#alert_messages").hide ()
|
$("#alert_messages").hide ()
|
||||||
|
@ -75,9 +75,11 @@ $(document).ready (function () {
|
||||||
|
|
||||||
$("a.modalpopup").click (function () {
|
$("a.modalpopup").click (function () {
|
||||||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
||||||
jQuery.get ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{"page": "general/alert_enterprise",
|
{
|
||||||
"message":$(this).attr("id")},
|
"page": "general/alert_enterprise",
|
||||||
|
"message": $(this).attr("id")
|
||||||
|
},
|
||||||
function (data, status) {
|
function (data, status) {
|
||||||
$("#alert_messages").hide ()
|
$("#alert_messages").hide ()
|
||||||
.empty ()
|
.empty ()
|
||||||
|
@ -93,10 +95,11 @@ $(document).ready (function () {
|
||||||
|
|
||||||
$(".publienterprise").click (function () {
|
$(".publienterprise").click (function () {
|
||||||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
||||||
jQuery.get ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{
|
{
|
||||||
"page": "general/alert_enterprise",
|
"page": "general/alert_enterprise",
|
||||||
"message":$(this).attr("id")},
|
"message": $(this).attr("id")
|
||||||
|
},
|
||||||
function (data, status) {
|
function (data, status) {
|
||||||
$("#alert_messages").hide ()
|
$("#alert_messages").hide ()
|
||||||
.empty ()
|
.empty ()
|
||||||
|
@ -112,10 +115,11 @@ $(document).ready (function () {
|
||||||
|
|
||||||
$(".publienterprisehide").click (function () {
|
$(".publienterprisehide").click (function () {
|
||||||
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
|
||||||
jQuery.get ("ajax.php",
|
jQuery.post ("ajax.php",
|
||||||
{
|
{
|
||||||
"page": "general/alert_enterprise",
|
"page": "general/alert_enterprise",
|
||||||
"message":$(this).attr("id")},
|
"message": $(this).attr("id")
|
||||||
|
},
|
||||||
function (data, status) {
|
function (data, status) {
|
||||||
$("#alert_messages").hide ()
|
$("#alert_messages").hide ()
|
||||||
.empty ()
|
.empty ()
|
||||||
|
|
Loading…
Reference in New Issue