Skip to content

Commit 3b16ede

Browse files
committed
Prevent blur on focus (applicable only to IE). Fixes telerik#745
1 parent 1c2214d commit 3b16ede

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/kendo.list.js

+2
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,9 @@ var __meta__ = {
599599
open = open !== undefined? open : !that.popup.visible();
600600

601601
if (!preventFocus && !touchEnabled && that._focused[0] !== activeElement()) {
602+
that._prevent = true;
602603
that._focused.focus();
604+
that._prevent = false;
603605
}
604606

605607
that[open ? OPEN : CLOSE]();

0 commit comments

Comments
 (0)