-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Problem was because IE has option icon "X" to empty input field.
Due to that legacy code bug appears.
In order to fix bug you have 2 options :
//----- Clear field IE problem, it's not on KEYUP
$("input.srch_input").bind('input propertychange', function(e, pageEvent) {
if (this.value == "") {
var currItem = document.activeElement;
setCurrentNav(item_id);
if (!pageEvent)
saveSesSateNav("");
if (SNMOptions.UseFocus)
currItem.focus();
else
$(this).focus();
}
});
In next release issue will be fixed with first option. (release > 2.1)
Metadata
Metadata
Assignees
Labels
No labels

