Server IP : 150.95.80.236 / Your IP : 3.141.45.179 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/plugins/formvalidation/dist/amd/plugins/ |
Upload File : |
define(["require", "exports", "jquery", "../core/Core"], function (require, exports, jquery_1, Core_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var version = jquery_1.default.fn.jquery.split(' ')[0].split('.'); if ((+version[0] < 2 && +version[1] < 9) || (+version[0] === 1 && +version[1] === 9 && +version[2] < 1)) { throw new Error('The J plugin requires jQuery version 1.9.1 or higher'); } jquery_1.default.fn['formValidation'] = function (options) { var params = arguments; return this.each(function () { var $this = (0, jquery_1.default)(this); var data = $this.data('formValidation'); var opts = 'object' === typeof options && options; if (!data) { data = (0, Core_1.default)(this, opts); $this.data('formValidation', data).data('FormValidation', data); } if ('string' === typeof options) { data[options].apply(data, Array.prototype.slice.call(params, 1)); } }); }; });