2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-12 16:46:35 +00:00
git-svn-id: https://svn.fhem.de/fhem/trunk@5924 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
svenson08 2014-05-21 19:42:15 +00:00
parent b3325005be
commit 0798427a9b

View File

@ -1,7 +1,7 @@
//########################################################################################
// dashboard.js
//########################################################################################
// Released : 14.11.2013 @svenson08
// Released : 14.11.2013 Sascha Hermann
// Version :
// 1.01: Released to testers
// 1.02: Add DebugMsg. Fix independent Groupsize adjustment after set & siterefresh. Fix
@ -241,7 +241,7 @@ function GetColWidth(ColCount, ColWidth){
}
if (ColWidthSum < 100) { aColWidth[ColWidthCount-1] = parseInt(aColWidth[ColWidthCount-1]) + (100 - ColWidthSum); } //fill up to 100% width
aColWidth[0] = parseInt(aColWidth[0])-(0.22 * ColCount);
aColWidth[0] = parseInt(aColWidth[0])-(0.3 * ColCount);
return aColWidth;
}