mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 14:36:49 +08:00
Fix Bug 51435
This commit is contained in:
@ -318,7 +318,8 @@ define([
|
||||
if (this.enableKeyEvents && this.parentMenu && this.handleSelect) {
|
||||
if (!me.showLast)
|
||||
this.parentMenu.on('show:before', function(menu) { me.deselectAll(); });
|
||||
this.parentMenu.on('show:after', function(menu) {
|
||||
this.parentMenu.on('show:after', function(menu, e) {
|
||||
if (e && (menu.el !== e.target)) return;
|
||||
if (me.showLast) me.showLastSelected();
|
||||
Common.NotificationCenter.trigger('dataview:focus');
|
||||
_.delay(function() {
|
||||
|
||||
Reference in New Issue
Block a user