Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for sanitizeAll (0.05 seconds)

  1. 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