Skip to content

Commit 2b4986e

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 561dd41 commit 2b4986e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/kendo.multiselect.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,13 @@ var __meta__ = { // jshint ignore:line
496496
},
497497

498498
_focusHandler: function() {
499-
this.input.focus();
499+
var input = this.input;
500+
var active = activeElement();
501+
var isActive = input[0] === active;
502+
503+
if(!isActive) {
504+
this.input.focus();
505+
}
500506
},
501507

502508
_editable: function(options) {

0 commit comments

Comments
 (0)