Add new focus event which will show cross button on search textbox when some item get paste directly without key event to search text box

This commit is contained in:
Abhishek Joshi 2011-05-13 22:44:47 -07:00
parent 3d0064beb0
commit cb645ede22

View file

@ -53,7 +53,8 @@ $.widget( "mobile.textinput", $.mobile.widget, {
}
toggleClear();
input.keyup(toggleClear);
input.keyup(toggleClear);
input.focus(toggleClear);
}
else{
input.addClass('ui-corner-all ui-shadow-inset' + themeclass);