Metadata-Version: 1.0
Name: collective.autoresizetextarea
Version: 1.0a1
Summary: jQuery textarea auto-resizer.
Home-page: http://svn.plone.org/svn/collective/collective.autoresizetextarea
Author: Timo Stollenwerk
Author-email: timo@zmag.de
License: GPL
Description: Introduction
        ============
        
        collective.autoresizetextarea is a textarea auto-resizer for Plone.
        It is based on James Padolsey's jQuery `autoResize`_ plugin. Check
        his website_ for a demo.
        
        .. _autoResize: http://james.padolsey.com/javascript/jquery-plugin-autoresize/
        
        .. _website: http://james.padolsey.com/javascript/jquery-plugin-autoresize/
        
        Buildout Installation
        ---------------------
        
        Add the following code to your buildout.cfg:
        
        [buildout]
        ...
        eggs =
        ...
        collective.autoresizetextarea
        ...
        
        ...
        [instance]
        ...
        zcml =
        ...
        collective.autoresizetextarea
        ...
        
        Usage
        -----
        
        To add the auto-resize feature to a textarea you can either add an
        "autoresize" CSS class to the textarea:
        
        <textarea class="autoresize" />
        
        or change the jQuery selector in the second line of the javascripts/autoresize.js file:
        
        ...
        jq('textarea.mycssclass').autoResize({
        ...
        ...
        
        Changelog
        =========
        
        1.0 - Unreleased
        ----------------
        
        * Initial release
        
        
Keywords: jQuery textarea auto-resize
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
