Save WebUI Statistics window size

This commit is contained in:
Thomas Piccirello 2018-03-05 01:40:21 -05:00
parent 1a9b009951
commit c47e4efade

View File

@ -236,15 +236,19 @@ initializeWindows = function() {
};
StatisticsLinkFN = function() {
var id = 'statisticspage';
new MochaUI.Window({
id: 'statisticspage',
id: id,
title: 'QBT_TR(Statistics)QBT_TR[CONTEXT=StatsDialog]',
loadMethod: 'xhr',
contentURL: 'statistics.html',
maximizable: false,
width: 275,
height: 370,
padding: 10
width: loadWindowWidth(id, 275),
height: loadWindowHeight(id, 370),
onResize: function() {
saveWindowSize(id);
}
});
};