/* ------------------------------------------------------------------------
 * contributors.js
 * Copyright (c) Perfect Memorials. All rights reserved.
 * ------------------------------------------------------------------------ */

$(document).ready(function(){
    PMTContributors.setEventHandlers();
});

var PMTContributors = {
    
    setEventHandlers: function(){
    	$('form.remove-contributor').submit(function(){
    	    return PMTContributors.removeContributor();
    	});
    	$('input.cancel').click(function(){
    	    document.location.href = PMTCore.TRIBUTE_URL + 'contributors/';
    	});
    },
    
    removeContributor: function(){
         return confirm('Are you sure you want to remove this contributor from your tribute?\n\nThe contributions they have made will not be deleted, but they will not be able to make any further contributions (unless you invite them again).');
    }

};
