|
|
@ -11,7 +11,7 @@ define('forum/tags', function() {
|
|
|
|
$('#tag-search').on('input propertychange', function() {
|
|
|
|
$('#tag-search').on('input propertychange', function() {
|
|
|
|
$('.tag-list a').each(function() {
|
|
|
|
$('.tag-list a').each(function() {
|
|
|
|
var $this = $(this)
|
|
|
|
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);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|