Browse Source

Update rlsnotes #1899

pull/1785/merge
jlukic 10 years ago
parent
commit
c2ffaa7cdc
2 changed files with 2 additions and 1 deletions
  1. 2
      RELEASE-NOTES.md
  2. 1
      src/definitions/modules/search.js

2
RELEASE-NOTES.md

@ -26,6 +26,8 @@
- **Transition** - Fixes `swing out` animations not working correctly
- **Transition** - Fixed display state other than `block` not determined when using `show` and `hide` without an animation
- **Transition** - Fix bug in `remove looping` causing next animation to use same duration
- **Search** - Fix a bug with `onSelect` returning `null` when `minCharacters: 0`
- **Search** - Fix a bug with `onSelect returning `null` when results retrieved from cached API query
- **Menu** - Fix vertical pointing menu, sub menu arrow color
- **Item ** - `img` inside of `ui item content` now do not receive size formatting by default
- **Form** - Added `input[type="search"]` styles to `ui form`

1
src/definitions/modules/search.js

@ -363,7 +363,6 @@ $.fn.search = function(parameters) {
module.debug('Reading result for ' + searchTerm + ' from cache');
module.save.results(cache.results);
module.addResults(cache.html);
}
else {
module.debug('Querying for ' + searchTerm);

Loading…
Cancel
Save