mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-01 11:24:42 +00:00
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:
parent
3d0064beb0
commit
cb645ede22
1 changed files with 2 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue