editor: showing current user name
[fnpeditor.git] / src / editor / modules / mainBar / mainBar.js
index e2e09c3..8658c27 100644 (file)
@@ -7,7 +7,14 @@ define([
 
 return function(sandbox) {
 
-    var view = $(_.template(template)());
+    /* globals gettext*/
+
+    var config = sandbox.getConfig(),
+        userName = config.user && config.user.name,
+        view = $(_.template(template)({
+            userName: userName || gettext('anonymous')
+        }));
+
     view.find('[data-cmd]').click(function(e) {
         e.preventDefault();
         sandbox.publish('cmd.' + $(e.target).attr('data-cmd'));