Skip to content

Commit

Permalink
inaccessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
technoweenie committed Aug 12, 2010
1 parent b4a913e commit f8594b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/gollum/frontend/public/javascript/gollum.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ $(function(){

if (selectedRevisions.length == 2) {
if(!baseCompareUrl) baseCompareUrl = $('form#history').attr('action')
var compareUrl = baseCompareUrl + "/" + selectedRevisions[1] + '...' + selectedRevisions[0]
//$('form#history').attr('action', compareUrl)
$('form#history input[type=submit]').attr('disabled', false).attr('method', 'get')
var compareUrl = baseCompareUrl + "/" + selectedRevisions[0] + '...' + selectedRevisions[1]
$('form#history').attr('action', compareUrl).attr('method', 'GET')
$('form#history input[type=submit]').attr('disabled', false)
var on = false
$('form#history tr.commit').each(function() {
if (on) { $(this).addClass("selected") }
Expand Down

0 comments on commit f8594b0

Please sign in to comment.