commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / bower_components / jquery-validation / src / additional / strippedminlength.js
1 // TODO check if value starts with <, otherwise don't try stripping anything
2 $.validator.addMethod("strippedminlength", function(value, element, param) {
3 return $(value).text().length >= param;
4 }, $.validator.format("Please enter at least {0} characters"));