2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-04 05:16:45 +00:00

55_InfoPanel.pm: code cleanup

git-svn-id: https://svn.fhem.de/fhem/trunk@8092 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2015-02-24 23:38:08 +00:00
parent d3592b0ba9
commit 1104de6fc7

View File

@ -497,16 +497,13 @@ sub btIP_itemLine {
sub btIP_itemLongpoll {
my ($id,$x,$y,$text,%params)= @_;
my ($iconURL,$color);
unless (defined($text)) {
my ($iconName,undef,undef) = FW_dev2image($id);
$iconURL = FW_IconURL($iconName);
} else {
$color = substr($params{rgb},0,6);
}
my ($iconName,undef,undef) = FW_dev2image($id);
my $iconURL = FW_IconURL($iconName);
my $color = substr($params{rgb},0,6);
my $output = "<div informId=\"$id\" style=\"position:absolute; top:${y}px; left:${x}px; ";
$output .= "font-family:$params{font}; font-size:$params{pt}; color:#$color; " if defined($text);
$output .= "margin-top:0px; z-index:3; \" >\n";
$output .= "$text\n" if defined($text);
$output .= "<img src=\"$iconURL\">\n" unless defined($text);
$output .= "</div>\n";