Added additional properties method to allow easier extension to client properties
updated VPN plugin to use WebClient message is sent to client trying to execute commands before they are authenticated fixed rare issue with ToAdmins failing record bullet distance fraction for client kills (_customcallbacks) change client level/permissions through webfront ability to tempban through webfront
This commit is contained in:
@ -6321,6 +6321,9 @@ a.link-inverse:hover {
|
||||
#console_command_response {
|
||||
min-height: 20rem; }
|
||||
|
||||
#console_command_response hr {
|
||||
border-color: #6c757d; }
|
||||
|
||||
#console .form-control, #console button {
|
||||
border-radius: 0;
|
||||
border-color: #007ACC;
|
||||
@ -6339,7 +6342,7 @@ a.link-inverse:hover {
|
||||
form *, select {
|
||||
border-radius: 0 !important; }
|
||||
|
||||
select {
|
||||
#penalty_filter_selection {
|
||||
border-left: none !important;
|
||||
border-right: none !important;
|
||||
border-bottom: none !important;
|
||||
|
@ -96,6 +96,10 @@ a.link-inverse:hover {
|
||||
min-height: 20rem;
|
||||
}
|
||||
|
||||
#console_command_response hr {
|
||||
border-color: #6c757d;
|
||||
}
|
||||
|
||||
#console .form-control, #console button {
|
||||
border-radius: 0;
|
||||
border-color: $primary;
|
||||
@ -119,7 +123,7 @@ form *, select {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
select {
|
||||
#penalty_filter_selection {
|
||||
border-left: none !important;
|
||||
border-right: none !important;
|
||||
border-bottom: none !important;
|
||||
@ -205,4 +209,3 @@ select {
|
||||
.client-message, .automated-penalty-info-detailed {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
@ -24,7 +24,7 @@ $(document).ready(function () {
|
||||
* hide loader when clicking
|
||||
*/
|
||||
$(document).click(function (e) {
|
||||
hideLoader()
|
||||
//hideLoader()
|
||||
});
|
||||
|
||||
/*
|
||||
@ -39,7 +39,7 @@ $(document).ready(function () {
|
||||
$('#actionModal').modal();
|
||||
})
|
||||
.fail(function (jqxhr, textStatus, error) {
|
||||
$('#actionModal .modal-message').text('Error &mdash ' + error);
|
||||
$('#actionModal .modal-message').text('Error — ' + error);
|
||||
$('#actionModal').modal();
|
||||
$('#actionModal .modal-message').fadeIn('fast');
|
||||
});
|
||||
|
@ -14,7 +14,7 @@
|
||||
$.get('/Console/ExecuteAsync', { serverId: serverId, command: command })
|
||||
.done(function (response) {
|
||||
hideLoader();
|
||||
$('#console_command_response').html(response);
|
||||
$('#console_command_response').append(response);
|
||||
$('#console_command_value').val("");
|
||||
})
|
||||
.fail(function (jqxhr, textStatus, error) {
|
||||
|
Reference in New Issue
Block a user