- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
/**
|
|
* Allows text inputs to display a placeholder message until it gets focus, at which point the input
|
|
* is set to empty.
|
|
*
|
|
* This simulated the placeholder attribute in html5.
|
|
* http://dev.w3.org/html5/spec/Overview.html#the-placeholder-attribute
|
|
*
|
|
* @copyright Clock Limited 2010
|
|
* @license http://opensource.org/licenses/bsd-license.php New BSD License
|
|
* @author Paul Serby <paul.serby@clock.co.uk>
|
|
*/
|
|
(function ($) {
|
|
$.fn.placeholder = function (text) {
|
|
|
|
return this.each(function () {
|
|
|
|
var
|
|
context = $(this),
|
|
placeholderText,
|
|
nativePlaceholderSupport = ('placeholder' in document.createElement('input'));
|
|
|
|
function onBlur(event) {
|
|
checkIfEmpty($(event.target));
|
|
}
|
|
|
|
function checkIfEmpty() {
|
|
if (context.val() === '') {
|
|
if (context.attr('type') === 'password') {
|
|
try {
|
|
context.attr('type', 'text');
|
|
} catch(e) {
|
|
return false;
|
|
}
|
|
}
|
|
context.val(placeholderText);
|
|
context.addClass('ui-placeholder');
|
|
}
|
|
}
|
|
|
|
function onFocus(event) {
|
|
context.removeClass('ui-placeholder');
|
|
if (context.val() === placeholderText) {
|
|
context.val('');
|
|
}
|
|
}
|
|
|
|
if (text === undefined) {
|
|
placeholderText = $(this).attr('placeholder');
|
|
} else {
|
|
placeholderText = text;
|
|
}
|
|
|
|
if (!nativePlaceholderSupport || (jQuery.browser.msie && jQuery.browser.version == 10)) {
|
|
checkIfEmpty(context.blur(onBlur).focus(onFocus));
|
|
context.parents('form').submit(function(event) {
|
|
if (context.val() === placeholderText) {
|
|
context.val('');
|
|
}
|
|
});
|
|
} else {
|
|
context.attr('placeholder', placeholderText);
|
|
}
|
|
});
|
|
};
|
|
})(jQuery);
|