Metadata-Version: 1.0
Name: collective.js.imagesloaded
Version: 2.1
Summary: Register JQuery imagesloaded plugin in Plone resource registry
Home-page: https://github.com/collective/collective.js.imagesloaded
Author: JeanMichel FRANCOIS aka toutpt
Author-email: toutpt@gmail.com
License: GPL
Description: Introduction
        ============
        
        Register jquery.imagesloaded_ plugin in Plone's resource registry.
        
        version: 2.1.0
        
        About jquery.imagesloaded
        =========================
        
        A small jQuery plugin that triggers a callback after all the selected/child 
        images have been loaded. Because you can't do `.load()` on cached images.
        
        ::
        
            $('#my-container').imagesLoaded( function( $images ) {
              // callback provides one argument, the jQuery object of child images
              console.log( $images.length + ' images have been loaded in ' + this )
            });
        
        You can call `imagesLoaded` on a set of images as well.
        
        ::
        
            $('.article img').imagesLoaded( myFunction );
        
        Credits
        =======
        
        Companies
        ---------
        
        |makinacom|_
        
        * `Planet Makina Corpus <http://www.makina-corpus.org>`_
        * `Contact Makina Corpus <mailto:python@makina-corpus.org>`_
        
        
        Authors
        -------
        
        - JeanMichel FRANCOIS aka toutpt <toutpt@gmail.com>
        
        .. Contributors
        
        .. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif
        .. _makinacom:  http://www.makina-corpus.com
        .. _jquery.imagesloaded: http://desandro.github.com/imagesloaded/
        
        Changelog
        =========
        
        2.1 (2012-10-20)
        ----------------
        
        - Nothing changed yet.
        
        
        1.0 (2012-01-04)
        ----------------
        
        - Initial release
        
Keywords: plone javascripts imagesloaded
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.0
Classifier: Framework :: Plone :: 4.1
Classifier: Framework :: Plone :: 4.2
Classifier: Programming Language :: Python
