mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
7 lines
211 B
JavaScript
7 lines
211 B
JavaScript
// Hacky fix for browsers ignoring autocomplete="off"
|
|
$(document).ready(function() {
|
|
$('.form-autocomplete-stop').on('click', function () {
|
|
$(this).removeAttr('readonly').blur().focus();
|
|
});
|
|
});
|