rosa-build/app/assets/javascripts/extra/pull.js

33 lines
985 B
JavaScript
Raw Normal View History

2012-05-31 17:56:27 +01:00
$(document).ready(function() {
2012-08-08 18:57:03 +01:00
var upd_action = $('#update_action').val();
var form = $('#new_pull_request');
2012-10-03 12:36:04 +01:00
$('#pull_request_to_project').on('autocompleteselect', function(event, data){
var ref = $('#to_ref');
ref.parent().load(data.item.get_refs_url+' #to_ref', {"selected": ref.val()});
});
2012-10-03 12:36:04 +01:00
$('#pull_request_to_project, input#to_refs, input#from_refs').on('autocompleteselect', function(event, data){
2012-10-01 17:03:08 +01:00
form.attr('action', upd_action)
.attr('method', 'get');
$('#update_pull').fadeIn('fast');
$('#create_pull').fadeOut('fast');
});
2012-10-01 17:03:08 +01:00
$('#pull_tabs a').on('click', function (e) {
var href = $(this).attr("href");
if ( window.history && history.pushState ) {
history.pushState("", "", href);
history.replaceState("", "", href);
} else {
location.hash = href;
}
});
var diff_tab = $('#pull_tabs a[href="#diff"]');
$('.link_to_full_changes').on('click', function(){
diff_tab.tab('show');
});
2012-05-31 17:56:27 +01:00
});