
$.fn.projectStarter = function() {
    var self = this;
    this.find('form').submit(function() {
        $.ajax({
            url: '/api/projects',
            type: 'post',
            data: {title: self.find(':input').val()},
            dataType: 'json',
            success: function(proj) {
                window.location = '/p/' + proj.slug;
            }
        });
        return false;
    });
}
