How to Make Material-UI Menu based on Hover, not Clickhow to text wrap the menu item in material ui.How to set maxHeight of a nested Menu in Material-UI?Passing a value as parameter onClick functionMaterial-ui: open menu by event hoverHow to make a Material UI layoutTextfield with Autofocus and MenuItemMaterial-UI show menu on IconButton clickReact component inside a component - does not inherit propertiesreact router link with material ui button submitCenter Popover in Viewport
Can diplomats be allowed on the flight deck of a commercial European airline?
How do you say “or” at the beginning of a sentence?
Flatten not working
How does the Earth's center produce heat?
How to deceive the MC
Why did it take so long for Germany to allow electric scooters / e-rollers on the roads?
How to write numbers and percentage?
Can the document desktop stacks be split for a specific file extension?
Are walkie-talkies legal in Switzerland?
"Official wife" or "Formal wife"?
Is a world with one country feeding everyone possible?
Why is Ni[(PPh₃)₂Cl₂] tetrahedral?
VHDL: Why is it hard to design a floating point unit in hardware?
A range of floats
Thinking about leaving industry job and taking up a postdoc
Keeping the dodos out of the field
Testing using real data of the customer
Ribbon Cable Cross Talk - Is there a fix after the fact?
Why is Samwell Tarly considered a lord?
What did Brienne write about Jaime?
If I arrive in the UK, and then head to mainland Europe, does my Schengen visa 90 day limit start when I arrived in the UK, or mainland Europe?
EU rights when flight delayed so much that return is missed
Why is unzipped directory exactly 4.0K (much smaller than zipped file)?
Was this scene in S8E06 added because of fan reactions to S8E04?
How to Make Material-UI Menu based on Hover, not Click
how to text wrap the menu item in material ui.How to set maxHeight of a nested Menu in Material-UI?Passing a value as parameter onClick functionMaterial-ui: open menu by event hoverHow to make a Material UI layoutTextfield with Autofocus and MenuItemMaterial-UI show menu on IconButton clickReact component inside a component - does not inherit propertiesreact router link with material ui button submitCenter Popover in Viewport
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am using Material-UI Menu.
It should work as it was, but just using mouse hover, not click.
Here is my code link: https://codesandbox.io/embed/vn3p5j40m0
Below is the code of what I tried. It opens correctly, but doesn't close when the mouse moves away.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseEnter=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
onMouseLeave=handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
material-ui
add a comment |
I am using Material-UI Menu.
It should work as it was, but just using mouse hover, not click.
Here is my code link: https://codesandbox.io/embed/vn3p5j40m0
Below is the code of what I tried. It opens correctly, but doesn't close when the mouse moves away.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseEnter=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
onMouseLeave=handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
material-ui
The Menu opens based on theopen
property passed to it. You can trigger that in whatever manner you want. If you have difficulty getting it to work via hover, please share the code of what you tried that didn't work.
– Ryan Cogswell
Mar 23 at 21:44
Hi, thank you for your reply. I've added the link to my code. will be waiting for your feedback.
– Jordan Lee
Mar 23 at 22:24
It seems to work. What is the problem?
– Ryan Cogswell
Mar 23 at 22:37
I want the menu to disappear when the mouse cursor is hovered out the menu, not clicking the backdrop.
– Jordan Lee
Mar 24 at 4:31
add a comment |
I am using Material-UI Menu.
It should work as it was, but just using mouse hover, not click.
Here is my code link: https://codesandbox.io/embed/vn3p5j40m0
Below is the code of what I tried. It opens correctly, but doesn't close when the mouse moves away.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseEnter=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
onMouseLeave=handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
material-ui
I am using Material-UI Menu.
It should work as it was, but just using mouse hover, not click.
Here is my code link: https://codesandbox.io/embed/vn3p5j40m0
Below is the code of what I tried. It opens correctly, but doesn't close when the mouse moves away.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseEnter=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
onMouseLeave=handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
material-ui
material-ui
edited Mar 24 at 22:27
Ryan Cogswell
6,8871727
6,8871727
asked Mar 23 at 21:16
Jordan LeeJordan Lee
82
82
The Menu opens based on theopen
property passed to it. You can trigger that in whatever manner you want. If you have difficulty getting it to work via hover, please share the code of what you tried that didn't work.
– Ryan Cogswell
Mar 23 at 21:44
Hi, thank you for your reply. I've added the link to my code. will be waiting for your feedback.
– Jordan Lee
Mar 23 at 22:24
It seems to work. What is the problem?
– Ryan Cogswell
Mar 23 at 22:37
I want the menu to disappear when the mouse cursor is hovered out the menu, not clicking the backdrop.
– Jordan Lee
Mar 24 at 4:31
add a comment |
The Menu opens based on theopen
property passed to it. You can trigger that in whatever manner you want. If you have difficulty getting it to work via hover, please share the code of what you tried that didn't work.
– Ryan Cogswell
Mar 23 at 21:44
Hi, thank you for your reply. I've added the link to my code. will be waiting for your feedback.
– Jordan Lee
Mar 23 at 22:24
It seems to work. What is the problem?
– Ryan Cogswell
Mar 23 at 22:37
I want the menu to disappear when the mouse cursor is hovered out the menu, not clicking the backdrop.
– Jordan Lee
Mar 24 at 4:31
The Menu opens based on the
open
property passed to it. You can trigger that in whatever manner you want. If you have difficulty getting it to work via hover, please share the code of what you tried that didn't work.– Ryan Cogswell
Mar 23 at 21:44
The Menu opens based on the
open
property passed to it. You can trigger that in whatever manner you want. If you have difficulty getting it to work via hover, please share the code of what you tried that didn't work.– Ryan Cogswell
Mar 23 at 21:44
Hi, thank you for your reply. I've added the link to my code. will be waiting for your feedback.
– Jordan Lee
Mar 23 at 22:24
Hi, thank you for your reply. I've added the link to my code. will be waiting for your feedback.
– Jordan Lee
Mar 23 at 22:24
It seems to work. What is the problem?
– Ryan Cogswell
Mar 23 at 22:37
It seems to work. What is the problem?
– Ryan Cogswell
Mar 23 at 22:37
I want the menu to disappear when the mouse cursor is hovered out the menu, not clicking the backdrop.
– Jordan Lee
Mar 24 at 4:31
I want the menu to disappear when the mouse cursor is hovered out the menu, not clicking the backdrop.
– Jordan Lee
Mar 24 at 4:31
add a comment |
1 Answer
1
active
oldest
votes
The code below seems to work reasonably. The main changes compared to your sandbox are to use onMouseOver=handleClick
instead of onMouseEnter
on the button. Without this change, it doesn't open reliably if the mouse isn't over where part of the menu will be. The other change is to use MenuListProps= onMouseLeave: handleClose
. Using onMouseLeave
directly on Menu
doesn't work because the Menu includes an overlay as part of the Menu leveraging Modal
and the mouse never "leaves" the overlay. MenuList
is the portion of Menu that displays the menu items.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
if (anchorEl !== event.currentTarget)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseOver=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
MenuListProps= onMouseLeave: handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
Thanks, Ryan. It works now.
– Jordan Lee
Mar 25 at 12:01
What if the menu list is popped below the button, not overlaid on the button and you don't even hover over the menu list and hover out the button?
– Jordan Lee
Mar 26 at 12:10
There is probably a fair amount of work to do this in a manner that is robust. I am not making any claim that my answer is robust -- just that it works OK and gives you a starting point.
– Ryan Cogswell
Mar 26 at 14:33
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318477%2fhow-to-make-material-ui-menu-based-on-hover-not-click%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The code below seems to work reasonably. The main changes compared to your sandbox are to use onMouseOver=handleClick
instead of onMouseEnter
on the button. Without this change, it doesn't open reliably if the mouse isn't over where part of the menu will be. The other change is to use MenuListProps= onMouseLeave: handleClose
. Using onMouseLeave
directly on Menu
doesn't work because the Menu includes an overlay as part of the Menu leveraging Modal
and the mouse never "leaves" the overlay. MenuList
is the portion of Menu that displays the menu items.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
if (anchorEl !== event.currentTarget)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseOver=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
MenuListProps= onMouseLeave: handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
Thanks, Ryan. It works now.
– Jordan Lee
Mar 25 at 12:01
What if the menu list is popped below the button, not overlaid on the button and you don't even hover over the menu list and hover out the button?
– Jordan Lee
Mar 26 at 12:10
There is probably a fair amount of work to do this in a manner that is robust. I am not making any claim that my answer is robust -- just that it works OK and gives you a starting point.
– Ryan Cogswell
Mar 26 at 14:33
add a comment |
The code below seems to work reasonably. The main changes compared to your sandbox are to use onMouseOver=handleClick
instead of onMouseEnter
on the button. Without this change, it doesn't open reliably if the mouse isn't over where part of the menu will be. The other change is to use MenuListProps= onMouseLeave: handleClose
. Using onMouseLeave
directly on Menu
doesn't work because the Menu includes an overlay as part of the Menu leveraging Modal
and the mouse never "leaves" the overlay. MenuList
is the portion of Menu that displays the menu items.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
if (anchorEl !== event.currentTarget)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseOver=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
MenuListProps= onMouseLeave: handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
Thanks, Ryan. It works now.
– Jordan Lee
Mar 25 at 12:01
What if the menu list is popped below the button, not overlaid on the button and you don't even hover over the menu list and hover out the button?
– Jordan Lee
Mar 26 at 12:10
There is probably a fair amount of work to do this in a manner that is robust. I am not making any claim that my answer is robust -- just that it works OK and gives you a starting point.
– Ryan Cogswell
Mar 26 at 14:33
add a comment |
The code below seems to work reasonably. The main changes compared to your sandbox are to use onMouseOver=handleClick
instead of onMouseEnter
on the button. Without this change, it doesn't open reliably if the mouse isn't over where part of the menu will be. The other change is to use MenuListProps= onMouseLeave: handleClose
. Using onMouseLeave
directly on Menu
doesn't work because the Menu includes an overlay as part of the Menu leveraging Modal
and the mouse never "leaves" the overlay. MenuList
is the portion of Menu that displays the menu items.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
if (anchorEl !== event.currentTarget)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseOver=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
MenuListProps= onMouseLeave: handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
The code below seems to work reasonably. The main changes compared to your sandbox are to use onMouseOver=handleClick
instead of onMouseEnter
on the button. Without this change, it doesn't open reliably if the mouse isn't over where part of the menu will be. The other change is to use MenuListProps= onMouseLeave: handleClose
. Using onMouseLeave
directly on Menu
doesn't work because the Menu includes an overlay as part of the Menu leveraging Modal
and the mouse never "leaves" the overlay. MenuList
is the portion of Menu that displays the menu items.
import React from "react";
import Button from "@material-ui/core/Button";
import Menu from "@material-ui/core/Menu";
import MenuItem from "@material-ui/core/MenuItem";
function SimpleMenu()
const [anchorEl, setAnchorEl] = React.useState(null);
function handleClick(event)
if (anchorEl !== event.currentTarget)
setAnchorEl(event.currentTarget);
function handleClose()
setAnchorEl(null);
return (
<div>
<Button
aria-owns=anchorEl ? "simple-menu" : undefined
aria-haspopup="true"
onClick=handleClick
onMouseOver=handleClick
>
Open Menu
</Button>
<Menu
id="simple-menu"
anchorEl=anchorEl
open=Boolean(anchorEl)
onClose=handleClose
MenuListProps= onMouseLeave: handleClose
>
<MenuItem onClick=handleClose>Profile</MenuItem>
<MenuItem onClick=handleClose>My account</MenuItem>
<MenuItem onClick=handleClose>Logout</MenuItem>
</Menu>
</div>
);
export default SimpleMenu;
answered Mar 24 at 22:25
Ryan CogswellRyan Cogswell
6,8871727
6,8871727
Thanks, Ryan. It works now.
– Jordan Lee
Mar 25 at 12:01
What if the menu list is popped below the button, not overlaid on the button and you don't even hover over the menu list and hover out the button?
– Jordan Lee
Mar 26 at 12:10
There is probably a fair amount of work to do this in a manner that is robust. I am not making any claim that my answer is robust -- just that it works OK and gives you a starting point.
– Ryan Cogswell
Mar 26 at 14:33
add a comment |
Thanks, Ryan. It works now.
– Jordan Lee
Mar 25 at 12:01
What if the menu list is popped below the button, not overlaid on the button and you don't even hover over the menu list and hover out the button?
– Jordan Lee
Mar 26 at 12:10
There is probably a fair amount of work to do this in a manner that is robust. I am not making any claim that my answer is robust -- just that it works OK and gives you a starting point.
– Ryan Cogswell
Mar 26 at 14:33
Thanks, Ryan. It works now.
– Jordan Lee
Mar 25 at 12:01
Thanks, Ryan. It works now.
– Jordan Lee
Mar 25 at 12:01
What if the menu list is popped below the button, not overlaid on the button and you don't even hover over the menu list and hover out the button?
– Jordan Lee
Mar 26 at 12:10
What if the menu list is popped below the button, not overlaid on the button and you don't even hover over the menu list and hover out the button?
– Jordan Lee
Mar 26 at 12:10
There is probably a fair amount of work to do this in a manner that is robust. I am not making any claim that my answer is robust -- just that it works OK and gives you a starting point.
– Ryan Cogswell
Mar 26 at 14:33
There is probably a fair amount of work to do this in a manner that is robust. I am not making any claim that my answer is robust -- just that it works OK and gives you a starting point.
– Ryan Cogswell
Mar 26 at 14:33
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318477%2fhow-to-make-material-ui-menu-based-on-hover-not-click%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The Menu opens based on the
open
property passed to it. You can trigger that in whatever manner you want. If you have difficulty getting it to work via hover, please share the code of what you tried that didn't work.– Ryan Cogswell
Mar 23 at 21:44
Hi, thank you for your reply. I've added the link to my code. will be waiting for your feedback.
– Jordan Lee
Mar 23 at 22:24
It seems to work. What is the problem?
– Ryan Cogswell
Mar 23 at 22:37
I want the menu to disappear when the mouse cursor is hovered out the menu, not clicking the backdrop.
– Jordan Lee
Mar 24 at 4:31