mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-02 10:22:09 +00:00
Fixes #526
This commit is contained in:
@@ -29,9 +29,11 @@ $(document).ready(function () {
|
||||
|
||||
if ($('input[name="tags"]').length > 0) {
|
||||
$.getJSON('json/tags').done(function (data) {
|
||||
|
||||
var opt = {
|
||||
typeahead: {
|
||||
source: data
|
||||
source: data,
|
||||
afterSelect: function(val) { this.$element.val(""); }
|
||||
}
|
||||
};
|
||||
$('input[name="tags"]').tagsinput(
|
||||
|
Reference in New Issue
Block a user