Change event handler to keyup. This fixes the IE10 + IE11 submit issue

pull/3413/merge
Ralph Jacobs 2017-03-22 15:31:09 +01:00 zatwierdzone przez Janneke Janssen
rodzic 31f4ac18c6
commit cf815e8897
4 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -30,6 +30,7 @@ Changelog
* Fix: Cloudflare error handling now handles non-string error responses correctly (hdnpl)
* Fix: Search indexing now uses a defined query ordering to prevent objects from being skipped (Christian Peters)
* Fix: Ensure that number localisation is not applied to object IDs within admin templates (Tom Hendrikx)
* Fix: Paginating with a search present was always returning the 1st page in Internet Explorer 10 & 11 (Ralph Jacobs)
1.9 (16.02.2017)

Wyświetl plik

@ -219,6 +219,7 @@ Contributors
* jacoor
* hdnpl
* Tom Hendrikx
* Ralph Jacobs
Translators
===========

Wyświetl plik

@ -44,6 +44,7 @@ Bug fixes
* Cloudflare error handling now handles non-string error responses correctly (hdnpl)
* Search indexing now uses a defined query ordering to prevent objects from being skipped (Christian Peters)
* Ensure that number localisation is not applied to object IDs within admin templates (Tom Hendrikx)
* Paginating with a search present was always returning the 1st page in Internet Explorer 10 & 11 (Ralph Jacobs)
Upgrade considerations

Wyświetl plik

@ -174,7 +174,7 @@ $(function() {
var searchCurrentIndex = 0;
var searchNextIndex = 0;
$(window.headerSearch.termInput).on('input', function() {
$(window.headerSearch.termInput).on('keyup cut paste', function() {
clearTimeout($.data(this, 'timer'));
var wait = setTimeout(search, 200);
$(this).data('timer', wait);