ui.js: Don't use jquery blur shorthand but the element's native method

This commit is contained in:
Johannes Meyer 2019-07-15 16:07:08 +02:00
parent b168c3d7db
commit ec3a6b0572
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@
var $search = $('#search');
if (e.which === 13 && $search.is(':focus')) {
$('#sidebar').removeClass('expanded');
$search.blur();
$search[0].blur();
}
},