tutorial in editor (mechanics only)
[fnpeditor.git] / src / editor / modules / mainBar / mainBar.js
index 0563b7c..93bb8e0 100644 (file)
@@ -12,7 +12,17 @@ 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,
+            previewTutorial: sandbox.getTutorialItem('preview'),
+            attachmentsTutorial: sandbox.getTutorialItem('attachments'),
+            draftTutorial: sandbox.getTutorialItem('draft'),
+            saveTutorial: sandbox.getTutorialItem('save'),
+            mainPageTutorial: sandbox.getTutorialItem('mainpage'),
+            exitTutorial: sandbox.getTutorialItem('exit')
         }));
 
     view.find('[data-cmd]').click(function(e) {
@@ -41,11 +51,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
+});