mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
CR/LF correction
This commit is contained in:
21
front/lib/AdminLTE/bower_components/inputmask/dist/inputmask/bindings/inputmask.binding.js
vendored
Normal file
21
front/lib/AdminLTE/bower_components/inputmask/dist/inputmask/bindings/inputmask.binding.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/*!
|
||||
* bindings/inputmask.binding.js
|
||||
* https://github.com/RobinHerbots/Inputmask
|
||||
* Copyright (c) 2010 - 2017 Robin Herbots
|
||||
* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
|
||||
* Version: 3.3.11
|
||||
*/
|
||||
|
||||
!function(factory) {
|
||||
"function" == typeof define && define.amd ? define([ "jquery", "../inputmask", "../global/document" ], factory) : "object" == typeof exports ? module.exports = factory(require("jquery"), require("../inputmask"), require("../global/document")) : factory(jQuery, window.Inputmask, document);
|
||||
}(function($, Inputmask, document) {
|
||||
$(document).ajaxComplete(function(event, xmlHttpRequest, ajaxOptions) {
|
||||
-1 !== $.inArray("html", ajaxOptions.dataTypes) && $(".inputmask, [data-inputmask], [data-inputmask-mask], [data-inputmask-alias]").each(function(ndx, lmnt) {
|
||||
void 0 === lmnt.inputmask && Inputmask().mask(lmnt);
|
||||
});
|
||||
}).ready(function() {
|
||||
$(".inputmask, [data-inputmask], [data-inputmask-mask], [data-inputmask-alias]").each(function(ndx, lmnt) {
|
||||
void 0 === lmnt.inputmask && Inputmask().mask(lmnt);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user