We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdad112 commit 7c1ceb8Copy full SHA for 7c1ceb8
1 file changed
select2.js
@@ -2101,6 +2101,9 @@ the specific language governing permissions and limitations under the Apache Lic
2101
this.search.on("keydown", this.bind(function (e) {
2102
if (!this.isInterfaceEnabled()) return;
2103
2104
+ // filter 229 keyCodes (input method editor is processing key input)
2105
+ if (229 == e.keyCode) return;
2106
+
2107
if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
2108
// prevent the page from scrolling
2109
killEvent(e);
0 commit comments