mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-26 17:14:42 +00:00
make sure close button on small multi-select menus still works. Fixes #1293
This commit is contained in:
parent
aab6cf4012
commit
f4e5492b9e
1 changed files with 9 additions and 1 deletions
|
|
@ -268,10 +268,18 @@ $.widget( "mobile.selectmenu", $.mobile.widget, {
|
|||
event.preventDefault();
|
||||
});
|
||||
|
||||
//events on "screen" overlay + close button
|
||||
//events on "screen" overlay
|
||||
screen.click(function( event ){
|
||||
self.close();
|
||||
});
|
||||
|
||||
//close button on small overlays
|
||||
self.headerClose.click(function(){
|
||||
if( self.menuType == "overlay" ){
|
||||
self.close();
|
||||
return false;
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue