##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14856:cda9c63d9c21
r14954:42b5c332b2c2
Show More
repository_navigation.js
36 lines | 1.0 KiB | application/javascript | JavascriptLexer
/ public / javascripts / repository_navigation.js
Jean-Philippe Lang
[js-cleanup] add short copyright notices to javascripts and remove superfluous newline (#20240)....
r14029 /* Redmine - project management software
Jean-Philippe Lang
Updates copyright for 2016....
r14856 Copyright (C) 2006-2016 Jean-Philippe Lang */
Jean-Philippe Lang
[js-cleanup] add short copyright notices to javascripts and remove superfluous newline (#20240)....
r14029
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $(document).ready(function() {
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 /*
If we're viewing a tag or branch, don't display it in the
revision box
*/
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 var branch_selected = $('#branch').length > 0 && $('#rev').val() == $('#branch').val();
var tag_selected = $('#tag').length > 0 && $('#rev').val() == $('#tag').val();
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 if (branch_selected || tag_selected) {
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $('#rev').val('');
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 }
/*
Copy the branch/tag value into the revision box, then disable
the dropdowns before submitting the form
*/
Jean-Philippe Lang
Code cleanup....
r9910 $('#branch,#tag').change(function() {
$('#rev').val($(this).val());
$('#branch,#tag').attr('disabled', true);
$(this).parent().submit();
$('#branch,#tag').removeAttr('disabled');
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 });
/*
Disable the branch/tag dropdowns before submitting the revision form
*/
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $('#rev').keydown(function(e) {
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 if (e.keyCode == 13) {
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $('#branch,#tag').attr('disabled', true);
$(this).parent().submit();
$('#branch,#tag').removeAttr('disabled');
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 }
});
})