[refs #90] remove old code

This commit is contained in:
Alexander Machehin 2012-07-17 23:02:55 +06:00
parent dc521f5844
commit b9e1f44fe8
1 changed files with 0 additions and 29 deletions

View File

@ -1,33 +1,4 @@
$(document).ready(function() {
$('.edit_form.pull').live('submit', function() {
var form = $(this);
$.ajax({
type: 'POST',
url: form.attr("action"),
data: form.serialize(),
success: function(data){
form.fadeOut('slow');
$('#edit_pull_content').fadeIn('slow');
$('.rightlist.pull_title').html(form.find('#pull_title').attr('value'));
$('.rightlist.pull_body').html(form.find('#pull_body').attr('value'));
},
error: function(data){
alert('error'); // TODO remove
}
});
return false;
});
$('#edit_pull_content').live('click', function() {
$('.edit_form.pull').fadeIn('fast');
$(this).fadeOut('fast');
});
$('#cancel_edit_pull_content').live('click', function() {
$('.edit_form.pull').fadeOut('fast');
$('#edit_pull_content').fadeIn('fast');
});
$('#pull_request_base_project').on('autocompleteselect', function(event, data){
$('input#base_refs').autocomplete('option', 'source', data.item.refs);
});