pandorafms/pandora_console/include/javascript/pandora_alerts.js

28 lines
705 B
JavaScript
Raw Normal View History

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);
}