PHP Classes

File: vendors/gentelella/vendors/parsleyjs/src/extra/validator/notequalto.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/parsleyjs/src/extra/validator/notequalto.js   Download  
File: vendors/gentelella/vendors/parsleyjs/src/extra/validator/notequalto.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 395 bytes
 

Contents

Class file image Download
(function () { // notequalto extra validators window.ParsleyConfig = window.ParsleyConfig || {}; window.ParsleyConfig.validators = window.ParsleyConfig.validators || {}; // Greater than validator window.ParsleyConfig.validators.notequalto = { fn: function (value, requirement) { return value !== ($(requirement).length ? $(requirement).val() : requirement); }, priority: 256 }; })();