forked from 0x2620/pandora
listen to more resize events
This commit is contained in:
parent
2ef516aad4
commit
56a22050e1
1 changed files with 13 additions and 0 deletions
|
@ -350,7 +350,14 @@ app.constructApp = function() {
|
||||||
size: app.ui.groups[4].size
|
size: app.ui.groups[4].size
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
id: 'browser',
|
||||||
orientation: 'horizontal'
|
orientation: 'horizontal'
|
||||||
|
})
|
||||||
|
.bindEvent('resize', function(event, data) {
|
||||||
|
Ox.print('resizing groups...')
|
||||||
|
$.each(app.$ui.groups, function(i, list) {
|
||||||
|
list.resize();
|
||||||
|
});
|
||||||
}),
|
}),
|
||||||
resizable: true,
|
resizable: true,
|
||||||
resize: [96, 112, 128, 144, 160, 176],
|
resize: [96, 112, 128, 144, 160, 176],
|
||||||
|
@ -381,6 +388,7 @@ app.constructApp = function() {
|
||||||
$.each(app.$ui.groups, function(i, list) {
|
$.each(app.$ui.groups, function(i, list) {
|
||||||
list.resizeColumn('name', widths[i].column);
|
list.resizeColumn('name', widths[i].column);
|
||||||
});
|
});
|
||||||
|
app.$ui.list.resize();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -580,6 +588,11 @@ app.constructList = function(view) {
|
||||||
}), callback);
|
}), callback);
|
||||||
},
|
},
|
||||||
sort: app.user.ui.sort
|
sort: app.user.ui.sort
|
||||||
|
})
|
||||||
|
.bindEvent({
|
||||||
|
resize: function(event, data) {
|
||||||
|
$list.resize();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
} else if (view == 'icons') {
|
} else if (view == 'icons') {
|
||||||
$list = new Ox.IconList({
|
$list = new Ox.IconList({
|
||||||
|
|
Loading…
Reference in a new issue