editor: Fix jumping to a different version of a document
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Thu, 7 Aug 2014 09:25:30 +0000 (11:25 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Thu, 7 Aug 2014 10:19:14 +0000 (12:19 +0200)
src/editor/modules/rng/rng.js

index e4731cc..e4f5c3e 100644 (file)
@@ -203,7 +203,12 @@ return function(sandbox) {
         },
         displayVersion: function(event) {
             /* globals window */
-            window.open('/' + gettext('editor') + '/' + sandbox.getModule('data').getDocumentId() + '?version=' + event.version, _.uniqueId());
+            var config = sandbox.getConfig();
+            if(config.documentUrl) {
+                window.open(config.documentUrl(sandbox.getModule('data').getDocumentId(), event.version), _.uniqueId());
+            } else {
+                logger.error('Unable to show version ' + event.version + ' of a document - config.documentUrl missing');
+            }
         }
     };