Skip to content

Commit

Permalink
。。。。
Browse files Browse the repository at this point in the history
  • Loading branch information
kjmjh authored Nov 30, 2024
1 parent eeabc0e commit aad5be7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions desktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ page.addEventListener('mouseup', enableIframes);
page.addEventListener('touchend', enableIframes);
page.addEventListener('touchcancel', enableIframes);

page.addEventListener('click',()=>{

if($('#start-menu').hasClass('show')){

hide_startmenu();
page.addEventListener('click',(event)=>{
if($('#start-menu').hasClass('show')&&!$(event.target).closest('#start-menu').length){
hide_startmenu();
}
});
//开始菜单收回

// 上古代码
Expand Down

0 comments on commit aad5be7

Please sign in to comment.