mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-29 12:59:00 +02:00
* include/javascript/pandora_alerts.js godmode/alerts/configure_alert_action.php: Fix some bugs in the action form (jquery headache) git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7116 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
28 lines
705 B
JavaScript
28 lines
705 B
JavaScript
var original_command = "";
|
|
|
|
function parse_alert_command (command) {
|
|
var nfield = 1;
|
|
$('.fields').each(function() {
|
|
// Only render values different from ''
|
|
if($(this).val() == '') {
|
|
return;
|
|
}
|
|
var field = '_field'+nfield+'_';
|
|
nfield++;
|
|
var regex = new RegExp(field,"gi");
|
|
command = command.replace (regex, $(this).val());
|
|
});
|
|
|
|
return command;
|
|
}
|
|
|
|
function render_command_preview (original_command) {
|
|
$("#textarea_command_preview").text (parse_alert_command (original_command));
|
|
}
|
|
function render_command_description (command_description) {
|
|
if(command_description != '') {
|
|
command_description = '<br>'+command_description;
|
|
}
|
|
$("#command_description").html(command_description);
|
|
}
|