From: Aleksander Ɓukasz Date: Thu, 20 Mar 2014 10:45:58 +0000 (+0100) Subject: editor: showing current user name X-Git-Url: https://git.mdrn.pl/fnpeditor.git/commitdiff_plain/c734aa55a5d6186bfc87dd89ef7efafdbc20dacd editor: showing current user name --- diff --git a/src/editor/modules/mainBar/mainBar.js b/src/editor/modules/mainBar/mainBar.js index e2e09c3..8658c27 100644 --- a/src/editor/modules/mainBar/mainBar.js +++ b/src/editor/modules/mainBar/mainBar.js @@ -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')); diff --git a/src/editor/modules/mainBar/template.html b/src/editor/modules/mainBar/template.html index eeecd62..d4746d2 100644 --- a/src/editor/modules/mainBar/template.html +++ b/src/editor/modules/mainBar/template.html @@ -2,6 +2,7 @@