// source --> https://webworkflows.com.au/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1 
"function"==typeof jQuery&&jQuery(document).ready(function(a){a("body").on("post-load",function(){window.a2a&&a2a.init_all()})});
// source --> https://webworkflows.com.au/wp-content/plugins/stop-user-enumeration/frontend/js/frontend.js?ver=1.7.7 
/*
Remove numbers from comment author
*/

document.addEventListener('DOMContentLoaded', function (event) {
    var commentForm = document.getElementById("commentform");
    if (null === commentForm) {
        return;
    }
    var author = commentForm.querySelector("#author");
    if (null === author) {
        return;
    }
    author.addEventListener(
        'blur',
        function () {
            this.value = this.value.replace(/\d+/g, '');
        },
        false
    );
});