Compare commits

...

2 commits

Author SHA1 Message Date
j
e361b1c16f use iconWidth 2021-02-18 17:54:07 +01:00
j
98e7402248 plural 2021-02-18 17:51:49 +01:00
2 changed files with 5 additions and 2 deletions

View file

@ -323,7 +323,7 @@
{
"id": "movement",
"operator": "+",
"title": "Social Movement",
"title": "Social Movements",
"type": ["string"],
"filter": true,
"find": true,

View file

@ -175,7 +175,7 @@ pandora.ui.documentInfoView = function(data, isMixed) {
position: 'absolute',
left: margin + 'px',
top: margin + iconHeight + margin + 'px',
width: iconSize + 'px',
width: iconWidth + 'px',
})
.appendTo($left);
@ -840,6 +840,9 @@ pandora.ui.documentInfoView = function(data, isMixed) {
$text.animate({
left: margin + (iconSize == 256 ? 256 : iconWidth) + margin + 'px'
}, 250);
$data.animate({
width: iconWidth + 'px'
}, 250);
pandora.UI.set({infoIconSize: iconSize});
}