From 36c83c541f9158b48a9388a36564c10039d42250 Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 1 Nov 2015 14:24:55 -0500 Subject: [PATCH] #3096, adds autocomplete off to init --- RELEASE-NOTES.md | 9 +++++---- src/definitions/modules/dropdown.js | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 3a3e23676..436aa847d 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -14,16 +14,17 @@ **Bugs** - **Divider/Step/Modal/AD** - Fixes 1px jump at `@mobileBreakpoint` caused by incorrect edge conditions in media query #3180 **THanks @mdehoog** -- **Sticky** - Fixes bug where sticky would stick at incorrect times when using a different scroll container than `body` and when the container's `scrollTop` is not 0 on init. +- **Dimmer** - Dimmer can now works correctly with `opacity: 0` #3167 **Thanks @mdehoog** +- **Dropdown** - `search dropdown` will now initialize with `autocomplete="off"` to avoid triggering native autocomplete menu - **Form Validation** - Fixes error on `blur` or `change` when using a blank validation object #3131 **Thanks @listepo** +- **Form Validation** - Fixes some issues with form integer validation #3053 **Thanks @maturano** - **Grid** - Fixes attached segment 1px offset inside grid column #3226 +- **Grid** - Fixes some inconsistencies with `widescreen only` class #3161 **Thanks @mdehoog** - **Popup** - Fixes positioning issue when `movePopup: false` #3213 **Thanks @parisholley** -- **Form Validation** - Fixes some issues with form integer validation #3053 **Thanks @maturano** - **Search** - Fixes `onSearchQuery` not firing when results are cached **Thanks @mnquintana** -- **Grid** - Fixes some inconsistencies with `widescreen only` class #3161 **Thanks @mdehoog** - **Search** - Fixes `url` parameter not working correctly due to typo in source **Thanks @fabienb4** -- **Dimmer** - Dimmer can now works correctly with `opacity: 0` #3167 **Thanks @mdehoog** - **Segment** - Fixes border on `horizontal segment` when they are `:first-child` inside `segments` group +- **Sticky** - Fixes bug where sticky would stick at incorrect times when using a different scroll container than `body` and when the container's `scrollTop` is not 0 on init. ### Version 2.1.4 - Sep 13, 2015 diff --git a/src/definitions/modules/dropdown.js b/src/definitions/modules/dropdown.js index d4a2151cc..6261b4cc1 100644 --- a/src/definitions/modules/dropdown.js +++ b/src/definitions/modules/dropdown.js @@ -280,6 +280,7 @@ $.fn.dropdown = function(parameters) { module.verbose('Adding search input'); $search = $('') .addClass(className.search) + .prop('autocomplete', 'off') .insertBefore($text) ; }