Add a space after the icon

This commit is contained in:
Marc Delisle
2010-12-27 09:14:17 -05:00
parent 6c0e5fd710
commit 83b84c7925

View File

@@ -75,7 +75,7 @@ function appendInlineAnchor(disp_mode) {
.addClass('inline_edit_anchor')
.find('a').attr('href', '#')
.find('span')
.text(PMA_messages['strInlineEdit'])
.text(' ' + PMA_messages['strInlineEdit'])
.prepend($img_object);
$cloned_tr.insertAfter($this_tr);
@@ -99,7 +99,7 @@ function appendInlineAnchor(disp_mode) {
$cloned_anchor.addClass('inline_edit_anchor')
.find('a').attr('href', '#')
.find('span')
.text(PMA_messages['strInlineEdit'])
.text(' ' + PMA_messages['strInlineEdit'])
.prepend($img_object);
$this_td.after($cloned_anchor);