filter list using the full name
This commit is contained in:
parent
f84c8bc411
commit
4f7199b5ff
1 changed files with 2 additions and 1 deletions
|
@ -23,13 +23,14 @@ block content
|
||||||
img.avatar[src=$repo.Avatar]
|
img.avatar[src=$repo.Avatar]
|
||||||
div.card-block
|
div.card-block
|
||||||
h3.login #{$repo.Name}
|
h3.login #{$repo.Name}
|
||||||
|
div.full_name.hidden #{$repo.FullName}
|
||||||
block append scripts
|
block append scripts
|
||||||
if len(Repos) != 0
|
if len(Repos) != 0
|
||||||
script
|
script
|
||||||
$(window).load(function(){
|
$(window).load(function(){
|
||||||
$(".repo-list").searcher({
|
$(".repo-list").searcher({
|
||||||
itemSelector: ".col-sm-4",
|
itemSelector: ".col-sm-4",
|
||||||
textSelector: ".login",
|
textSelector: ".full_name",
|
||||||
inputSelector: ".repo-search"
|
inputSelector: ".repo-search"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue