Files
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- 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.
2025-10-16 11:17:21 +03:00
..

Autosize

Small jQuery plugin to allow dynamic resizing of textarea height, so that it grows as based on visitor input. To use, just call the .autosize() method on any textarea element. Example $('textarea').autosize();. See the project page for documentation and a demonstration. Released under the MIT license.

Changelog

Version 1.14 - October 6, 2012

  • Added 'append' option for appending whitespace to the end of the height calculation (an extra newline improves the apperance when animating).
  • Added a demonstration of animating the height change using a CSS transition.

Version 1.13 - September 21, 2012

  • Added optional callback that fires after resize.

Version 1.12 - September 3, 2012

  • Fixed a bug I introduced in the last update.

Version 1.11 - August 8, 2012

  • Added workaround to get Chrome to reflow default text better.

Version 1.10 - July 30, 2012

  • Added 'lineHeight' to the list of styles considered for size detection.

Version 1.9 - June 19, 2012

  • Added 'textIndent' to the list of styles considered for size detection.
  • Added vender prefixes to box-sizing detection

Version 1.8 - June 7, 2012

  • Added conditional so that autosize cannot be applied twice to the same element

  • When autosize is applied to an element, it will have a data property that links it to the mirrored textarea element. This will make it easier to keep track of and remove unneeded mirror elements. Example:

    $('textarea.example').data('mirror').remove(); // delete the mirror

    $('textarea.example').remove(); // delete the original

Version 1.7 - May 3, 2012

  • Now supports box-sizing:border-box

Version 1.6 - February 11, 2012

  • added binding to allow autosize to be triggered manually. Example: $('#myTextArea').trigger('autosize');

Version 1.5 - December 7, 2011

  • fixed a regression in detecting FireFox support

Version 1.4 - November 22, 2011

  • added branching to exclude old browsers (FF3- & Safari4-)

Version 1.3 - November 13, 2011

  • fixed a regression in 1.1 relating to Opera.

Version 1.2 - November 10, 2011

  • fixed a regression in 1.1 that broke autosize for IE9.

Version 1.1 - November 10, 2011

  • autosize now follows the max-height of textareas. OverflowY will be set to scroll once the content height exceeds max-height.

Version 1.0 - November 7, 2011

  • first release