/**
 * Frontend Javascript bootstrap
 *
 * @module home
 */
App.module.extend({
    // documentation module
    home: {
        controllers: {
            // Index controller
            'index': {
                // init
                '_init': function () {
                    App.onReady(function() {
                    });
                },
                'donation': function () {
                    App.onReady(function() {
                        $('a#donate-submit').click(function(e) {
                            $('form#donate-form').submit();
                            e.preventDefault();
                        });
                    });
                }
            }
        }
    }
});

