vendor/monsieurbiz/sylius-search-plugin/src/Resources/views/_scripts.html.twig line 1

Open in your IDE?
  1. <script type="text/javascript">
  2.     var monsieurbizSearchPlugin = {
  3.         instantEnabled: true,
  4.         instantUrl: '{{ path('monsieurbiz_search_instant') | escape('js') }}', // URL for instant search
  5.         searchInputSelector: '.autocomplete-search input[type=search]', // Selector for search input text field
  6.         resultClosestSelector: '.autocomplete-search', // Selector used to display results, take the closest parent of searchInputSelector
  7.         resultFindSelector: '.autocomplete-results', // Selector used to display results, take the closest parent of searchInputSelector
  8.         keyUpTimeOut: 500, // Time in millisecond to wait to be sure the user ended typing
  9.         minQueryLength: 3, // Number of characters minimum to call instant search
  10.     };
  11. </script>
  12. {% include '@SyliusUi/_javascripts.html.twig' with {'path': 'bundles/monsieurbizsyliussearchplugin/js/monsieurbiz-search.js'} %}