mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Merge pull request #317 from cyxae/stretch-unstable
Allow search in the app description
This commit is contained in:
commit
1c291cddc8
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@
|
||||||
|
|
||||||
// Check text search
|
// Check text search
|
||||||
var input = jQuery("#filter-app-cards").val().toLowerCase();
|
var input = jQuery("#filter-app-cards").val().toLowerCase();
|
||||||
if (jQuery(this).find('.app-title').text().toLowerCase().indexOf(input) <= -1) return false;
|
if (jQuery(this).find('.app-title, .app-card-desc').text().toLowerCase().indexOf(input) <= -1) return false;
|
||||||
|
|
||||||
// Check subtags
|
// Check subtags
|
||||||
var subtag = $(".subtag-selector button.active").data("subtag");
|
var subtag = $(".subtag-selector button.active").data("subtag");
|
||||||
|
|
Loading…
Reference in a new issue