From 4beb3631ab00461d5868c1f6a7d9ad887e029263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Thu, 3 Oct 2019 14:14:33 +0200 Subject: [PATCH] Typeahead input now fills the whole container again. --- assets/ts_src/event_listeners.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/ts_src/event_listeners.ts b/assets/ts_src/event_listeners.ts index ec56c43c..d53e20d3 100644 --- a/assets/ts_src/event_listeners.ts +++ b/assets/ts_src/event_listeners.ts @@ -371,6 +371,9 @@ $(document).on("ajaxUI:reload ajaxUI:start", function () { name: 'states', source: engine }); + + //Make the typeahead input fill the container (remove block-inline attr) + $(this).parent(".twitter-typeahead").css('display', 'block'); }) });