Fix issue with the tooltip in the dark mode toggle button
This commit is contained in:
parent
15bc72e72a
commit
0471891640
File diff suppressed because one or more lines are too long
|
@ -252,10 +252,12 @@ $(() => {
|
|||
}
|
||||
})
|
||||
|
||||
$toggleDarkMode.on('hover', () => {
|
||||
$toggleDarkMode.on('mouseenter', () => {
|
||||
toggleDesktopTopbarOverflow(true)
|
||||
})
|
||||
|
||||
$toggleDarkMode.on('mouseleave', () => {
|
||||
toggleDesktopTopbarOverflow(true)
|
||||
}, () => {
|
||||
toggleDesktopTopbarOverflow(false)
|
||||
})
|
||||
|
||||
$closeNotification.on('click', function () {
|
||||
|
|
Loading…
Reference in a new issue