Skip to content

Commit

Permalink
Fixes #41
Browse files Browse the repository at this point in the history
  • Loading branch information
claudioc committed Oct 13, 2014
1 parent 550f1bf commit 11a21bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

Version 1.2.1, October 13, 2014
=================================

- Fixes #41 (inverted diff)

Version 1.2.0, October 9, 2014
=================================

Expand Down
2 changes: 1 addition & 1 deletion jingo
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var program = require('commander'),

global.Git = require('./lib/gitmech');

program.version('1.2.0')
program.version('1.2.1')
.option('-c, --config <path>', 'Specify the config file')
.option('-#, --hash-string <string>', 'Create an hash for a string')
.option('-l, --local', 'Listen on localhost only')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jingo",
"version": "1.2.0",
"version": "1.2.1",
"description": "A nodejs based wiki engine (sort of Gollum port)",
"author": "Claudio Cicali <[email protected]>",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
if ($hCol1.find(":checked").length < 2) {
return false;
}
window.location.href = "/wiki/" + $(this).data("pagename") + "/compare/" + $hCol1.find(":checked").map(function() { return $(this).val(); }).toArray().join("..");
window.location.href = "/wiki/" + $(this).data("pagename") + "/compare/" + $hCol1.find(":checked").map(function() { return $(this).val(); }).toArray().reverse().join("..");
return false;
});

Expand Down

0 comments on commit 11a21bd

Please sign in to comment.