|
@@ -21,7 +21,6 @@ jQuery(function($){
|
|
|
url: '/api/v1/get/postcat/' + button.data('queue-id'),
|
|
|
dataType: 'text',
|
|
|
complete: function (data) {
|
|
|
- console.log(data);
|
|
|
$('#queue_msg_content').text(data.responseText);
|
|
|
}
|
|
|
});
|
|
@@ -54,7 +53,7 @@ jQuery(function($){
|
|
|
});
|
|
|
item.recipients = rcpts.join('<hr style="margin:1px!important">');
|
|
|
item.action = '<div class="btn-group">' +
|
|
|
- '<a href="#" data-bs-toggle="modal" data-bs-target="#showQueuedMsg" data-queue-id="' + encodeURI(item.queue_id) + '" class="btn btn-xs btn-secondary">' + lang.queue_show_message + '</a>' +
|
|
|
+ '<a href="#" data-bs-toggle="modal" data-bs-target="#showQueuedMsg" data-queue-id="' + encodeURI(item.queue_id) + '" class="btn btn-xs btn-secondary">' + lang.show_message + '</a>' +
|
|
|
'</div>';
|
|
|
});
|
|
|
return data;
|