Added space after tags in tag input
This commit is contained in:
parent
a59a57fe70
commit
4cad09b85e
2 changed files with 2 additions and 2 deletions
|
@ -210,7 +210,7 @@ input[type=checkbox]:focus + label {
|
|||
}
|
||||
.tag-input li a.close {
|
||||
font-size: 85%;
|
||||
margin-left: 0.75em;
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
.related-tags {
|
||||
|
|
|
@ -288,7 +288,7 @@ App.Controls.TagInput = function($underlyingInput) {
|
|||
$elem.attr('data-tag', tagName.toLowerCase());
|
||||
|
||||
var $tagLink = jQuery('<a class="tag">');
|
||||
$tagLink.text(tagName);
|
||||
$tagLink.text(tagName + ' ' /* for easy copying */);
|
||||
$tagLink.click(function(e) {
|
||||
e.preventDefault();
|
||||
showOrHideSiblings(tagName);
|
||||
|
|
Loading…
Reference in a new issue