fix scrollbar on chat + compress css files + add remove filter inlist

This commit is contained in:
lutranf
2014-10-28 20:55:22 +01:00
parent 6b149c445d
commit 3697c32017
13 changed files with 57 additions and 3940 deletions

12
jquery/databap.js vendored
View File

@@ -852,6 +852,18 @@ function Databap()
if(self.tmp('scrollbar')) self.tmp('scrollbar').tinyscrollbar_update(sPos);
};
this.isScrollBarAtBottom = function()
{
return self.tmp('scrollbar').tinyscrollbar_isBottom();
};
this.unifyWidth = function($ItemsSet)
{
var iMaxWidth = 0;
$ItemsSet.each(function(){iMaxWidth = Math.max(iMaxWidth, $(this).width());});
$ItemsSet.each(function(){if($(this).width() < iMaxWidth) $(this).width(iMaxWidth);});
};
this.shareEvent = function(sType, iId)
{
if(iId!='')