X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/f87e22ff51c4626e3fbe446ee13693305901c8d6..d5dade3:/src/editor/modules/mainBar/mainBar.js diff --git a/src/editor/modules/mainBar/mainBar.js b/src/editor/modules/mainBar/mainBar.js index 0563b7c..4fdee83 100644 --- a/src/editor/modules/mainBar/mainBar.js +++ b/src/editor/modules/mainBar/mainBar.js @@ -12,7 +12,11 @@ return function(sandbox) { var config = sandbox.getConfig(), userName = config.user && config.user.name, view = $(_.template(template)({ - userName: userName || gettext('anonymous') + userName: userName || gettext('anonymous'), + documentScheduleUrl: config.documentScheduleUrl, + documentForkUrl: config.documentForkUrl, + documentPreviewUrl: config.documentPreviewMainUrl(data.revision), + documentGalleryUrl: config.documentGalleryUrl, })); view.find('[data-cmd]').click(function(e) { @@ -41,11 +45,11 @@ return function(sandbox) { trigger.text(disabledText); } }, - setVersion: function(version) { - view.find('.version').text(version); + setSummaryView: function(summaryView) { + view.find('.bottom').prepend(summaryView); } }; }; -}); \ No newline at end of file +});