Metadata-Version: 1.0
Name: collective.autoresizetextarea
Version: 1.0b1
Summary: jQuery textarea auto-resizer for Plone.
Home-page: http://pypi.python.org/pypi/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({
        ...
        ...
        
        Consult the `jQuery documentation`_ for more about jQuery selectors.
        
        .. _`jQuery documentation`: http://docs.jquery.com/Selectors
        
        Changelog
        =========
        
        1.0b1 (2010-02-05)
        ------------------
        
        * z3c.autoinclude added. [timo]
        
        
        1.0a1 (2009-09-24)
        ------------------
        
        * Initial release. [timo]
        
        
Keywords: jQuery textarea auto-resize
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
