Skip to content

Commit

Permalink
el6: add missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Feb 15, 2022
1 parent 1b0f66d commit 8c0fc34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Ext.onReady(function() {
target: Ext.getBody(),
delegate: 'A.tooltipTarget', // the cell class in which the tooltip has to be triggered
dismissDelay: 0,
width: 500,
width: 700,
manageHeight: false,
maxWidth: 500,
maxWidth: 700,
hideDelay: 300,
closable: true,
showDelay: 500,
Expand Down Expand Up @@ -77,7 +77,7 @@ Ext.onReady(function() {
show: function(This) {
if(TP.iconTip.detailsTarget) { TP.iconTip.detailsTarget.doLayout(); }
var size = This.getSize();
if(size.width <= 1 || size.height <= 1) { size = {width: 500, height: 150}; }
if(size.width <= 1 || size.height <= 1) { size = {width: 700, height: 150}; }

var position = "automatic";
if(TP.iconTipTarget && TP.iconTipTarget.xdata.popup && TP.iconTipTarget.xdata.popup.popup_position != "" && TP.iconTipTarget.xdata.popup.popup_position != "automatic") {
Expand Down Expand Up @@ -322,7 +322,7 @@ Ext.onReady(function() {
html: ' ',
border: 0,
minHeight: 40,
width: 480
width: "100%"
});
TP.iconTip.detailsTarget.body.mask("loading");
if(link == TP.iconTip.lastUrl && TP.iconTip.lastData) {
Expand Down Expand Up @@ -479,7 +479,7 @@ TP.renderTipDetails = function(data) {
}
else if(!TP.iconSettingsWindow) {
var size = TP.iconTip.getSize();
if(size.width <= 1 || size.height <= 1) { size = {width: 500, height: 150}; }
if(size.width <= 1 || size.height <= 1) { size = {width: 700, height: 150}; }
var showAtPos = TP.getNextToPanelPos(panel, size.width, size.height);
TP.iconTip.showAt(showAtPos);
} else {
Expand Down
1 change: 1 addition & 0 deletions support/thruk.spec
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ Requires: perl-LWP-Protocol-https
# rhel6 requirements
%if 0%{?el6}
BuildRequires: perl(ExtUtils::MakeMaker) httpd
Requires: perl(Time::HiRes)
Requires: httpd mod_fcgid cronie
%endif

Expand Down

0 comments on commit 8c0fc34

Please sign in to comment.