Skip to content

Commit

Permalink
[PE] Fix tooltips in fullscreen mode
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaRadzhabova committed Sep 26, 2024
1 parent 70c9fce commit 0633717
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
12 changes: 8 additions & 4 deletions apps/common/main/lib/component/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,8 @@ define([
html: !!isHtml,
title : (typeof me.options.hint == 'string') ? me.options.hint : me.options.hint[0],
placement : me.options.hintAnchor||'cursor',
zIndex : tipZIndex
zIndex : tipZIndex,
container : me.options.hintContainer
});
!Common.Utils.isGecko && (me.btnEl.data('bs.tooltip').enabled = !me.disabled);
me.btnEl.mouseenter();
Expand All @@ -857,7 +858,8 @@ define([
html: !!isHtml,
title : me.options.hint[1],
placement : me.options.hintAnchor||'cursor',
zIndex : tipZIndex
zIndex : tipZIndex,
container : me.options.hintContainer
});
!Common.Utils.isGecko && (me.btnMenuEl.data('bs.tooltip').enabled = !me.disabled);
me.btnMenuEl.mouseenter();
Expand All @@ -867,13 +869,15 @@ define([
html: !!isHtml,
title : (typeof this.options.hint == 'string') ? this.options.hint : this.options.hint[0],
placement : this.options.hintAnchor||'cursor',
zIndex : tipZIndex
zIndex : tipZIndex,
container : this.options.hintContainer
});
this.btnMenuEl && this.btnMenuEl.tooltip({
html: !!isHtml,
title : this.options.hint[1],
placement : this.options.hintAnchor||'cursor',
zIndex : tipZIndex
zIndex : tipZIndex,
container : this.options.hintContainer
});
}
if (modalParents.length > 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,7 @@ define([
screenTip.strTip = ToolTip;
screenTip.tipType = type;
recalc = true;
screenTip.toolTip.getBSTip().options.container = me.isPreviewVisible ? '#pe-preview' : 'body';
}

showPoint = [moveData.get_X(), moveData.get_Y()];
Expand Down
15 changes: 10 additions & 5 deletions apps/presentationeditor/main/app/view/DocumentPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ define([
this.btnPrev = new Common.UI.Button({
el: $('#btn-preview-prev',this.el),
hint: this.txtPrev,
hintAnchor: 'top'
hintAnchor: 'top',
hintContainer: '#pe-preview'
});
this.btnPrev.on('click', _.bind(function() {
if (this.api) this.api.DemonstrationPrevSlide();
Expand All @@ -117,7 +118,8 @@ define([
this.btnNext = new Common.UI.Button({
el: $('#btn-preview-next',this.el),
hint: this.txtNext,
hintAnchor: 'top'
hintAnchor: 'top',
hintContainer: '#pe-preview'
});
this.btnNext.on('click', _.bind(function() {
if (this.api) this.api.DemonstrationNextSlide();
Expand All @@ -126,7 +128,8 @@ define([
this.btnPlay = new Common.UI.Button({
el: $('#btn-preview-play',this.el),
hint: this.txtPlay,
hintAnchor: 'top'
hintAnchor: 'top',
hintContainer: '#pe-preview'
});
this.btnPlay.on('click', _.bind(function(btn) {
var iconEl = $('.icon', this.btnPlay.cmpEl);
Expand All @@ -146,7 +149,8 @@ define([
this.btnClose = new Common.UI.Button({
el: $('#btn-preview-close',this.el),
hint: this.txtClose,
hintAnchor: 'top'
hintAnchor: 'top',
hintContainer: '#pe-preview'
});
this.btnClose.on('click', _.bind(function() {
if (this.api) this.api.EndDemonstration();
Expand All @@ -155,7 +159,8 @@ define([
this.btnFullScreen = new Common.UI.Button({
el: $('#btn-preview-fullscreen',this.el),
hint: this.txtFullScreen,
hintAnchor: 'top'
hintAnchor: 'top',
hintContainer: '#pe-preview'
});
this.btnFullScreen.on('click', _.bind(function(btn) {
this.toggleFullScreen();
Expand Down

0 comments on commit 0633717

Please sign in to comment.