diff --git a/lib/gollum/frontend/public/css/gollum.css b/lib/gollum/frontend/public/css/gollum.css
index fc33f23b..378123c5 100755
--- a/lib/gollum/frontend/public/css/gollum.css
+++ b/lib/gollum/frontend/public/css/gollum.css
@@ -291,7 +291,7 @@ a:hover, a:visited {
}
#wiki-history table tr td.commit-name {
- border-right: none;
+ border-left: 0;
}
#wiki-history table tr td.commit-name span.time-elapsed {
@@ -329,21 +329,6 @@ a:hover, a:visited {
font-family: 'Monaco', 'Andale Mono', Consolas, 'Courier New', monospace;
padding: 0 0.2em;
}
-
- #wiki-history table tr td.revert-action {
- border-left: 0;
- min-width: 10em;
- text-align: right;
- }
-
- #wiki-history table tr td.revert-action a {
- font-weight: bold;
- }
-
- #wiki-history table tr td.revert-action a span {
- font-size: 0.9em;
- font-family: 'Monaco', 'Andale Mono', Consolas, 'Courier New', monospace;
- }
.history #wiki-history ul.actions li,
.history #footer ul.actions li {
diff --git a/lib/gollum/frontend/public/javascript/gollum.js b/lib/gollum/frontend/public/javascript/gollum.js
index 3571c3a7..b94c0914 100755
--- a/lib/gollum/frontend/public/javascript/gollum.js
+++ b/lib/gollum/frontend/public/javascript/gollum.js
@@ -50,28 +50,6 @@ $(document).ready(function() {
if ($('#wiki-wrapper').hasClass('history')) {
$('#wiki-history td.checkbox input').click(highlightChecked);
-
- $('#wiki-history td.revert-action a').mouseenter(highlightOn);
- $('#wiki-history td.revert-action a').mouseleave(highlightOff);
-
- if ($('td.revert-action a').length) {
- $('td.revert-action a').click(function(e) {
- e.preventDefault();
-
- var commitSha = $(this).attr('rel');
- var truncatedSha = commitSha.toString().substr(0, 7);
- // revert action
- $.GollumDialog.init({
- title: 'Reset to ' + truncatedSha + '?',
- body: 'Are you sure you wish to reset to commit ' +
- truncatedSha + '' +
- ' ? This will overwrite any previous changes.',
- OK: function() {
- // TODO add async endpoint to revert here
- }
- });
- });
- }
if ($('.history a.action-compare-revision').length) {
$('.history a.action-compare-revision').click(function() {
diff --git a/lib/gollum/frontend/templates/compare.mustache b/lib/gollum/frontend/templates/compare.mustache
index 0325d018..50d051f0 100755
--- a/lib/gollum/frontend/templates/compare.mustache
+++ b/lib/gollum/frontend/templates/compare.mustache
@@ -1,10 +1,17 @@