Add a nbsp before the menu button.

This commit is contained in:
Nicolas Stepien 2012-07-14 13:32:54 +02:00
parent d2a68c2be0
commit 207ab2004e
2 changed files with 3 additions and 2 deletions

View File

@ -1194,7 +1194,7 @@
a = $('.menu_button', post.el);
} else {
a = Menu.a.cloneNode(true);
$.add($('.postInfo', post.el), a);
$.add($('.postInfo', post.el), [$.tn('\u00A0'), a]);
}
return $.on(a, 'click', Menu.toggle);
},

View File

@ -954,7 +954,8 @@ Menu =
a = $ '.menu_button', post.el
else
a = Menu.a.cloneNode true
$.add $('.postInfo', post.el), a
# \u00A0 is nbsp
$.add $('.postInfo', post.el), [$.tn('\u00A0'), a]
$.on a, 'click', Menu.toggle
toggle: (e) ->