Added input code to two additional pages to cover shop tab search boxes

This commit is contained in:
Robin Klaus
2020-05-16 12:56:06 +10:00
parent 5c7541e63d
commit ba8ecf19ac
2 changed files with 10 additions and 4 deletions

View File

@@ -14,9 +14,11 @@
#active-table-search.row.pad-top
.small-12.columns
%p
%input{type: :text,
"ng-model" => "query",
%input{type: "search",
"ng-model" => "search",
placeholder: t(:groups_search),
inputmode: "search",
name: "search",
"ng-debounce" => "150",
"ofn-disable-enter" => true}
@@ -45,3 +47,4 @@
= t :groups_no_groups
= render partial: "shared/footer"

View File

@@ -1,7 +1,10 @@
#active-table-search.row
.small-12.columns
%input{type: :text,
"ng-model" => "query",
%input{type: "search",
"ng-model" => "search",
placeholder: t('search_by_name'),
inputmode: "search",
name: "name",
"ng-debounce" => "500",
"ofn-disable-enter" => true}