From fa2f14fba95504252170e67050230dc2202a3f8c Mon Sep 17 00:00:00 2001 From: Nic Jansma Date: Sat, 4 Feb 2017 21:52:51 -0500 Subject: [PATCH] Removes 'required' CSS class from tt-hint --- src/typeahead/plugin.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/typeahead/plugin.js b/src/typeahead/plugin.js index f6bf416491..4c235e50dc 100644 --- a/src/typeahead/plugin.js +++ b/src/typeahead/plugin.js @@ -225,6 +225,7 @@ .css(getBackgroundStyles($input)) .prop('readonly', true) .removeAttr('id name placeholder required') + .removeClass('required') .attr({ spellcheck: 'false', tabindex: -1 }); }