Correctly show space between toolbar icon and text in buttons

This commit is contained in:
Samy Pessé
2015-11-02 17:16:43 +01:00
parent 2814fea67e
commit 68ed2631dc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ function updateButton(opts) {
// Create button
var $btn = $('<a>', {
'class': 'btn',
'text': opts.text,
'text': opts.text? ' ' + opts.text : '',
'aria-label': opts.label,
'href': '#'
});