##// END OF EJS Templates
Adds a replacement for deprecated link_to_function helper....
Adds a replacement for deprecated link_to_function helper. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10092 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9885:6a2ca5e03427
r9909:6e7507d58007
Show More
repository_navigation.js
35 lines | 1011 B | application/javascript | JavascriptLexer
$(document).ready(function() {
/*
If we're viewing a tag or branch, don't display it in the
revision box
*/
var branch_selected = $('#branch').length > 0 && $('#rev').val() == $('#branch').val();
var tag_selected = $('#tag').length > 0 && $('#rev').val() == $('#tag').val();
if (branch_selected || tag_selected) {
$('#rev').val('');
}
/*
Copy the branch/tag value into the revision box, then disable
the dropdowns before submitting the form
*/
$('#branch,#tag').each(function() {
$(this).change(function() {
$('#rev').val($(this).val());
$('#branch,#tag').attr('disabled', true);
$(this).parent().submit();
$('#branch,#tag').removeAttr('disabled');
});
});
/*
Disable the branch/tag dropdowns before submitting the revision form
*/
$('#rev').keydown(function(e) {
if (e.keyCode == 13) {
$('#branch,#tag').attr('disabled', true);
$(this).parent().submit();
$('#branch,#tag').removeAttr('disabled');
}
});
})