This commit is contained in:
Antelle 2016-02-14 17:09:57 +03:00
parent af34c966b9
commit 3258940d07
3 changed files with 7 additions and 2 deletions

View File

@ -66,7 +66,7 @@ var FieldViewTags = FieldViewText.extend({
return '<div class="details__tags-autocomplete-tag">' + _.escape(tag) + '</div>';
}).join('');
this.tagsAutocomplete.html(tagsHtml);
this.tagsAutocomplete.toggle(tagsHtml);
this.tagsAutocomplete.toggle(!!tagsHtml);
},
tagsAutocompleteClick: function(e) {

View File

@ -85,7 +85,7 @@ var FieldViewText = FieldView.extend({
},
setInputHeight: function() {
var MinHeight = 20;
var MinHeight = 18;
this.input.height(MinHeight);
var newHeight = this.input[0].scrollHeight;
if (newHeight <= MinHeight) {

View File

@ -1,5 +1,10 @@
Release notes
-------------
##### v1.0.1 (not released yed)
Bugfixes
`-` fixed tags selection
##### v1.0.0 (2016-02-12)
Performance, stability and quality improvements
`+` track changes in local files