Closed #48
This commit is contained in:
parent
6b55706fb4
commit
0f72ef3963
3 changed files with 28 additions and 12 deletions
|
@ -179,3 +179,25 @@ $(function()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function getTagItOptions()
|
||||||
|
{
|
||||||
|
return {
|
||||||
|
caseSensitive: false,
|
||||||
|
autocomplete:
|
||||||
|
{
|
||||||
|
source:
|
||||||
|
function(request, response)
|
||||||
|
{
|
||||||
|
var term = request.term.toLowerCase();
|
||||||
|
var results = $.grep(this.options.availableTags, function(a)
|
||||||
|
{
|
||||||
|
return a.toLowerCase().indexOf(term) != -1;
|
||||||
|
});
|
||||||
|
if (!this.options.allowDuplicates)
|
||||||
|
results = this._subtractArray(results, this.assignedTags());
|
||||||
|
response(results);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -14,12 +14,9 @@ $(function()
|
||||||
{
|
{
|
||||||
tags = data['tags'];
|
tags = data['tags'];
|
||||||
|
|
||||||
var tagItOptions =
|
var tagItOptions = getTagItOptions();
|
||||||
{
|
tagItOptions.availableTags = tags;
|
||||||
caseSensitive: true,
|
tagItOptions.placeholderText = $('.tags input').attr('placeholder');
|
||||||
availableTags: tags,
|
|
||||||
placeholderText: $('.tags input').attr('placeholder')
|
|
||||||
};
|
|
||||||
$('.tags input').tagit(tagItOptions);
|
$('.tags input').tagit(tagItOptions);
|
||||||
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
|
@ -158,12 +158,9 @@ $(function()
|
||||||
$('.posts').append(postDom);
|
$('.posts').append(postDom);
|
||||||
|
|
||||||
postDom.show();
|
postDom.show();
|
||||||
var tagItOptions =
|
var tagItOptions = getTagItOptions();
|
||||||
{
|
tagItOptions.availableTags = tags;
|
||||||
caseSensitive: true,
|
tagItOptions.placeholderText = $('.tags input').attr('placeholder');
|
||||||
availableTags: tags,
|
|
||||||
placeholderText: $('.tags input').attr('placeholder')
|
|
||||||
};
|
|
||||||
$('.tags input', postDom).tagit(tagItOptions);
|
$('.tags input', postDom).tagit(tagItOptions);
|
||||||
|
|
||||||
if (!file.type.match('image.*'))
|
if (!file.type.match('image.*'))
|
||||||
|
|
Loading…
Reference in a new issue