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 {
|
.tag-input li a.close {
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
margin-left: 0.75em;
|
margin-left: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.related-tags {
|
.related-tags {
|
||||||
|
|
|
@ -288,7 +288,7 @@ App.Controls.TagInput = function($underlyingInput) {
|
||||||
$elem.attr('data-tag', tagName.toLowerCase());
|
$elem.attr('data-tag', tagName.toLowerCase());
|
||||||
|
|
||||||
var $tagLink = jQuery('<a class="tag">');
|
var $tagLink = jQuery('<a class="tag">');
|
||||||
$tagLink.text(tagName);
|
$tagLink.text(tagName + ' ' /* for easy copying */);
|
||||||
$tagLink.click(function(e) {
|
$tagLink.click(function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
showOrHideSiblings(tagName);
|
showOrHideSiblings(tagName);
|
||||||
|
|
Loading…
Reference in a new issue