X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/29a9bfd9b61771b41ca18de2a53b672cb3c07cf1..e32eab0:/src/editor/modules/mainBar/mainBar.js diff --git a/src/editor/modules/mainBar/mainBar.js b/src/editor/modules/mainBar/mainBar.js index 256111f..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) { @@ -40,9 +44,12 @@ return function(sandbox) { trigger.data('originalContent', trigger.html()); trigger.text(disabledText); } + }, + setSummaryView: function(summaryView) { + view.find('.bottom').prepend(summaryView); } }; }; -}); \ No newline at end of file +});