7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-08 23:58:59 +02:00
2017-05-01 16:41:39 -04:00

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