kopia lustrzana https://github.com/wagtail/wagtail
Change event handler to keyup. This fixes the IE10 + IE11 submit issue
rodzic
31f4ac18c6
commit
cf815e8897
|
@ -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)
|
||||
|
|
|
@ -219,6 +219,7 @@ Contributors
|
|||
* jacoor
|
||||
* hdnpl
|
||||
* Tom Hendrikx
|
||||
* Ralph Jacobs
|
||||
|
||||
Translators
|
||||
===========
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Ładowanie…
Reference in New Issue