mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Crappy Zero at Distances
This commit is contained in:
@@ -199,3 +199,18 @@ function getDistanceQsos(distance) {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
var target = document.body;
|
||||
var observer = new MutationObserver(function() {
|
||||
$('#dt-search-0').on('keyup', function (e) {
|
||||
tocrappyzero=$(this).val().toUpperCase().replaceAll(/0/g, 'Ø');
|
||||
$(this).val(tocrappyzero);
|
||||
$(this).trigger("input");
|
||||
});
|
||||
});
|
||||
var config = { childList: true, subtree: true};
|
||||
// pass in the target node, as well as the observer options
|
||||
observer.observe(target, config);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user