X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/7671cda4767353b2a93b05f2332ba6e2f236c468..0da29a22a23a90561df3d201a299f3007c84d524:/redakcja/static/js/wiki/view_history.js diff --git a/redakcja/static/js/wiki/view_history.js b/redakcja/static/js/wiki/view_history.js index 4fe20e25..85adca0a 100644 --- a/redakcja/static/js/wiki/view_history.js +++ b/redakcja/static/js/wiki/view_history.js @@ -5,14 +5,28 @@ options.callback = function() { var self = this; + if (CurrentDocument.diff) { + rev_from = CurrentDocument.diff[0]; + rev_to = CurrentDocument.diff[1]; + this.doc.fetchDiff({ + from: rev_from, + to: rev_to, + success: function(doc, data){ + var result = $.wiki.newTab(doc, ''+rev_from +' -> ' + rev_to, 'DiffPerspective'); + + $(result.view).html(data); + $.wiki.switchToTab(result.tab); + } + }); + } // first time page is rendered $('#make-diff-button').click(function() { self.makeDiff(); }); - $('#tag-changeset-button').click(function() { - self.showTagForm(); + $('#pubmark-changeset-button').click(function() { + self.showPubmarkForm(); }); $('#doc-revert-button').click(function() { @@ -128,7 +142,7 @@ }); }; - HistoryPerspective.prototype.showTagForm = function(){ + HistoryPerspective.prototype.showPubmarkForm = function(){ var selected = $('#changes-list .entry.selected'); if (selected.length != 1) { @@ -137,7 +151,7 @@ } var version = parseInt($("*[data-stub-value='version']", selected[0]).text()); - $.wiki.showDialog('#add_tag_dialog', {'revision': version}); + $.wiki.showDialog('#pubmark_dialog', {'revision': version}); }; HistoryPerspective.prototype.makeDiff = function() {