X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/d4925a8b60f04674885e30d9316dc0263f8b9a84..b293ff8ad52fc76ba0c44783e3982418114d6b08:/js/kivi.Validator.js?ds=sidebyside diff --git a/js/kivi.Validator.js b/js/kivi.Validator.js index b564ffb78..4d03451b1 100644 --- a/js/kivi.Validator.js +++ b/js/kivi.Validator.js @@ -142,6 +142,26 @@ namespace("kivi.Validator", function(ns) { ns.annotate($e_annotate); return true; } + }, + trimmed_whitespaces: function($e, $e_annotate) { + $e_annotate = $e_annotate || $e; + + var string = $e.val(); + + if ($e.hasClass('tooltipstered')) + $e.tooltipster('destroy'); + + if (string.match(/^\s|\s$/)) { + $e.val(string.trim()); + + $e.tooltipster({ + content: kivi.t8("Leading and trailing whitespaces have been removed."), + contentAsHTML: true, + theme: 'tooltipster-light', + }); + $e.tooltipster('show'); + } + return true; } };