Fix Bug 58693
This commit is contained in:
parent
8a3abfeb47
commit
d855278570
|
@ -1289,6 +1289,9 @@ define([
|
|||
row_columnTip.isHidden = true;
|
||||
}
|
||||
}
|
||||
if (!index_foreign) {
|
||||
me.hideForeignSelectTips();
|
||||
}
|
||||
if (me.permissions.isEdit || me.permissions.canViewComments) {
|
||||
if (!index_comments || this.popupmenu) {
|
||||
commentTip.moveCommentId = undefined;
|
||||
|
@ -1309,9 +1312,6 @@ define([
|
|||
if (!index_locked) {
|
||||
me.hideCoAuthTips();
|
||||
}
|
||||
if (!index_foreign) {
|
||||
me.hideForeignSelectTips();
|
||||
}
|
||||
if (index_slicer===undefined) {
|
||||
if (!slicerTip.isHidden && slicerTip.ref) {
|
||||
slicerTip.ref.hide();
|
||||
|
@ -1511,6 +1511,7 @@ define([
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (index_foreign && me.isUserVisible(dataarray[index_foreign-1].asc_getUserId())) {
|
||||
data = dataarray[index_foreign-1];
|
||||
|
||||
|
@ -1551,8 +1552,6 @@ define([
|
|||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (index_filter!==undefined && !(me.dlgFilter && me.dlgFilter.isVisible()) && !(me.currentMenu && me.currentMenu.isVisible()) && !dataarray[index_filter-1].asc_getFilter().asc_getPivotObj()) {
|
||||
if (!filterTip.parentEl) {
|
||||
filterTip.parentEl = $('<div id="tip-container-filtertip" style="position: absolute; z-index: 10000;"></div>');
|
||||
|
@ -1840,7 +1839,8 @@ define([
|
|||
me.documentHolder.cmpEl.offset().top - $(window).scrollTop()
|
||||
];
|
||||
me.tooltips.coauth.apiHeight = me.documentHolder.cmpEl.height();
|
||||
me.tooltips.coauth.rightMenuWidth = $('#right-menu').width();
|
||||
var rightMenu = $('#right-menu');
|
||||
me.tooltips.coauth.rightMenuWidth = rightMenu.is(':visible') ? rightMenu.width() : 0;
|
||||
me.tooltips.coauth.bodyWidth = $(window).width();
|
||||
me.tooltips.coauth.bodyHeight = $(window).height();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue