UNPKG

holly-packages

Version:
23 lines (19 loc) 408 B
/** * Requirement: captcha.js */ (function($) { "use strict"; /** * Add "click" event handler for "a.captcha" links. */ function applyCaptchaLinks() { $('a.captcha').click(function(e) { e.preventDefault(); $(this).refreshCaptcha(); }).trigger('click'); } $(function() { applyCaptchaLinks(); $('body').on('show.bs.modal', applyCaptchaLinks); }); })(jQuery);