✏️ 正在编辑: inputmask.binding.js
路径:
/home/ubuntu/plugins-bkp-26012025/forminator/assets/js/library/inputmask.binding.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
/* Input Mask plugin binding http://github.com/RobinHerbots/jquery.inputmask Copyright (c) Robin Herbots Licensed under the MIT license */ (function (factory) { factory(jQuery, window.Inputmask, window); } (function ($, Inputmask, window) { $(window.document).ajaxComplete(function (event, xmlHttpRequest, ajaxOptions) { if ($.inArray("html", ajaxOptions.dataTypes) !== -1) { $(".inputmask, [data-inputmask], [data-inputmask-mask], [data-inputmask-alias], [data-inputmask-regex]").each(function (ndx, lmnt) { if (lmnt.inputmask === undefined) { Inputmask().mask(lmnt); } }); } }).ready(function () { $(".inputmask, [data-inputmask], [data-inputmask-mask], [data-inputmask-alias],[data-inputmask-regex]").each(function (ndx, lmnt) { if (lmnt.inputmask === undefined) { Inputmask().mask(lmnt); } }); }); }));
💾 保存文件
← 返回文件管理器