All Versions
22
Latest Version
Avg Release Cycle
27 days
Latest Release
2794 days ago

Changelog History
Page 3

  • v0.3.1 Changes

    February 18, 2015

    ๐Ÿ›  Fixed

    • ๐Ÿ’ป Reactify is no longer included as a Browserify transform, thanks Naman Goel
  • v0.3.0 Changes

    February 07, 2015

    ๐Ÿš€ This release restructured the code so that most methods are now on a Mixin, which is used by the Component (module.exports);

    You can now mix react-tappable into your own Components by using the Mixin directly:

    var Tappable = require('react-tappable');
    
    var MyComponent = React.createComponent({
        mixins: [Tappable.Mixin],
        /* ... */
    });