Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for sanitizeAll (0.06 seconds)

  1. src/main/webapp/js/admin/plugins/form-validator/sanitize.js

    tize"),function(a){if(!(a in d))throw new Error('Use of unknown sanitize command "'+a+'"');c=d[a](c,b,f)}),b.val(c).trigger("keyup.validation")};e.each(function(){var b=a(this);f.sanitizeAll&&b.find("input,textarea").not(c).each(function(){var b=a(this),c=b.attr("data-sanitize")||"";b.attr("data-sanitize",f.sanitizeAll+" "+c)}),b.find("[data-sanitize]").unbind("blur.sanitation",g).bind("blur.sanitation",g),a(function(){b.trigger("blur.sanitation")})})};a(b).on("validatorsLoaded formValidationSet...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 2.7K bytes
    - Click Count (0)
  2. src/main/webapp/js/chat.js

            messageElement.find('.message-wrapper').append(actionsHtml);
        }
    
        /**
         * Validates and sanitizes a URL to prevent javascript: and other dangerous protocols
         */
        function sanitizeUrl(url) {
            if (!url || typeof url !== 'string') {
                return '#';
            }
            var trimmedUrl = url.trim().toLowerCase();
            // Allow http, https, and absolute path URLs
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
Back to Top