2011-11-11 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* godmode/massive/massive_enable_disable_alerts.php
	godmode/massive/massive_operations.php: Correct mistake from my last 
	commit. 



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5127 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2011-11-11 08:28:34 +00:00
parent 41616c776b
commit 254014b344
3 changed files with 12 additions and 18 deletions

View File

@ -1,3 +1,9 @@
2011-11-11 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/massive/massive_enable_disable_alerts.php
godmode/massive/massive_operations.php: Correct mistake from my last
commit.
2011-11-10 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/massive/massive_add_alerts.php

View File

@ -1,4 +1,4 @@
F<?php
<?php
// Pandora FMS - http://pandorafms.com
// ==================================================

View File

@ -174,11 +174,13 @@ $(document).ready (function (){
});
$('#form_edit').submit( function(){
$("#loading").css("display", "");
confirm = confirm(" <?php echo __('Are you sure?'); ?> ");
if (confirm)
$("#loading").css("display", "");
else
return false;
});
$('[id^=form]').submit( function(){
confirm = confirm(" <?php echo __('Are you sure?'); ?> ");
if (confirm)
@ -187,23 +189,9 @@ $(document).ready (function (){
return false;
});
// $('[id^=submit-]').click( function(){
// $("#loading").css("display", "");
// });
$("#loading").css("display", "none");
});
// $("#loading").slideUp ();
//$('[id^=submit]').click( function() {
// console.log("DERER");
// $("#loading").show ();
//});
</script>
<?php