only search tag value

v1.18.x
barisusakli 11 years ago
parent 94dbb15b21
commit fb72b4c8e0

@ -11,7 +11,7 @@ define('forum/tags', function() {
$('#tag-search').on('input propertychange', function() {
$('.tag-list a').each(function() {
var $this = $(this)
$this.toggleClass('hide', $this.attr('href').indexOf($('#tag-search').val()) === -1);
$this.toggleClass('hide', $this.attr('data-value').indexOf($('#tag-search').val()) === -1);
})
});
};

Loading…
Cancel
Save