forked from 0x2620/pandora
fix a resize bug in the info panel
This commit is contained in:
parent
cfe7282a24
commit
42c86d9e6c
1 changed files with 2 additions and 2 deletions
|
@ -277,10 +277,10 @@ pandora.ui.listInfo = function() {
|
||||||
that.resizeInfo = function() {
|
that.resizeInfo = function() {
|
||||||
var width = that.width();
|
var width = that.width();
|
||||||
$icon.css(getIconCSS());
|
$icon.css(getIconCSS());
|
||||||
$title.options({
|
$title && $title.options({
|
||||||
width: width
|
width: width
|
||||||
});
|
});
|
||||||
$description.options({
|
$description && $description.options({
|
||||||
height: width,
|
height: width,
|
||||||
width: width
|
width: width
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue