Skip to content

Commit

Permalink
Filterbox add size attribute same as the default one.
Browse files Browse the repository at this point in the history
  • Loading branch information
5ko committed Aug 6, 2024
1 parent db1c16b commit 859086f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Filterable.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@
This extension creates search boxes for large lists and tables.
*/

$RecipeInfo['Filterable']['Version'] = '2024-08-05';
$RecipeInfo['Filterable']['Version'] = '2024-08-06';

SDVA($Filterable, [
'selector' => 'ul.filterable, ol.filterable, table.filterable',
'minsize' => 5,
]);

SDVA($InputTags['filterbox'], [
':html' => "<input type='search' data-filterbox='1' \$InputFormArgs />",
':html' => "<input type='search' \$InputFormArgs />",
'class' => 'inputbox noprint',
'size' => 30,
'data-filterbox' => 1,
':args' => ['data-selector', 'data-minsize'],
]);

Expand Down

0 comments on commit 859086f

Please sign in to comment.