Metadata-Version: 1.0
Name: django-html5accordion
Version: 0.1.2
Summary: JS support to expand/collapse content, like HTML5 details/summary elements
Home-page: https://github.com/jgerigmeyer/django-html5accordion/
Author: Jonny Gerig Meyer
Author-email: jonny@oddbird.net
License: UNKNOWN
Description: jQuery html5accordion plugin package for Django
        ===============================================
        
        django-html5accordion adds JS support to expand/collapse any content, like HTML5 details/summary elements. It can be called on any element, and takes as an argument a selector for the `summary` contents that should always remain visible (and act as the link to expand/collapse the hidden content).
        
        Dependencies
        ------------
        
        - jQuery library (http://jquery.com/)
        
        Installation
        ------------
        
        In your Django project settings, add "html5accordion" to your INSTALLED_APPS.
        
        Usage
        -----
        
        Linking the JS::
        
        <script src="{{ STATIC_URL }}html5accordion/jquery.html5accordion.js"></script>
        
        Sample HTML::
        
        <article class="details">
        <header class="summary">
        <p>This content will always be visible</p>
        </header>
        <div>
        <p>This content will expand/collapse when `.summary` is clicked</p>
        </div>
        </article>
        
        Calling the plugin::
        
        $('.details').html5accordion('.summary');
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
