Skip to content
Snippets Groups Projects
Commit a18b6e7e authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Add autocomplete auto submit to EDS.ini and default to true in logic.

parent 08cd3a47
No related merge requests found
...@@ -222,6 +222,9 @@ enabled = true ...@@ -222,6 +222,9 @@ enabled = true
; Define a default_handler ; Define a default_handler
default_handler = Eds default_handler = Eds
; Auto-submit autocomplete on click or enter
auto_submit = true
; In this section, set the key equal to a search type from [Basic_Searches] and ; In this section, set the key equal to a search type from [Basic_Searches] and
; the value equal to an autocomplete handler in order to customize autocompletion ; the value equal to an autocomplete handler in order to customize autocompletion
; behavior when that search type is selected. (default: Eds:rawqueries) ; behavior when that search type is selected. (default: Eds:rawqueries)
......
...@@ -231,7 +231,7 @@ abstract class Options implements TranslatorAwareInterface ...@@ -231,7 +231,7 @@ abstract class Options implements TranslatorAwareInterface
* *
* @var bool * @var bool
*/ */
protected $autocompleteAutoSubmit = false; protected $autocompleteAutoSubmit = true;
/** /**
* Configuration file to read global settings from * Configuration file to read global settings from
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment