0xDB info view: fix resize bug
This commit is contained in:
parent
b87cab29fe
commit
11efe26644
1 changed files with 3 additions and 1 deletions
|
@ -1141,7 +1141,9 @@ pandora.ui.infoView = function(data) {
|
|||
};
|
||||
|
||||
that.resize = function() {
|
||||
$list && $list.css({height: getHeight() + 'px'});
|
||||
var height = getHeight() + 'px';
|
||||
$data.css({height: height});
|
||||
$list && $list.css({height: height});
|
||||
};
|
||||
|
||||
that.bindEvent({
|
||||
|
|
Loading…
Reference in a new issue