forked from 0x2620/pandora
set icon size in preferences dialog, fixes #784
This commit is contained in:
parent
ba1ca42bd7
commit
7ee6d92242
1 changed files with 7 additions and 1 deletions
|
@ -13,7 +13,13 @@ pandora.ui.preferencesDialog = function() {
|
||||||
.append(
|
.append(
|
||||||
$('<img>')
|
$('<img>')
|
||||||
.attr({src: '/static/png/icon.png'})
|
.attr({src: '/static/png/icon.png'})
|
||||||
.css({position: 'absolute', left: '16px', top: '16px'})
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
left: '16px',
|
||||||
|
top: '16px',
|
||||||
|
width: '64px',
|
||||||
|
height: '64px'
|
||||||
|
})
|
||||||
);
|
);
|
||||||
if (id == 'account') {
|
if (id == 'account') {
|
||||||
$content.append(
|
$content.append(
|
||||||
|
|
Loading…
Reference in a new issue