assign stored content-insert height/width in switchPanelMode(); reset stored sizes on widescreen switch
This commit is contained in:
parent
3263c9ccee
commit
89018afa13
29
js/tt-rss.js
29
js/tt-rss.js
|
@ -500,6 +500,10 @@ function init() {
|
||||||
if (!isCdmMode()) {
|
if (!isCdmMode()) {
|
||||||
_widescreen_mode = !_widescreen_mode;
|
_widescreen_mode = !_widescreen_mode;
|
||||||
|
|
||||||
|
// reset stored sizes because geometry changed
|
||||||
|
setCookie("ttrss_ci_width", 0);
|
||||||
|
setCookie("ttrss_ci_height", 0);
|
||||||
|
|
||||||
switchPanelMode(_widescreen_mode);
|
switchPanelMode(_widescreen_mode);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -555,17 +559,6 @@ function init_second_stage() {
|
||||||
{width: getCookie("ttrss_fh_width") + "px" });
|
{width: getCookie("ttrss_fh_width") + "px" });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parseInt(getCookie("ttrss_ci_width")) > 0) {
|
|
||||||
if (_widescreen_mode) {
|
|
||||||
dijit.byId("content-insert").domNode.setStyle(
|
|
||||||
{width: getCookie("ttrss_ci_width") + "px" });
|
|
||||||
|
|
||||||
} else {
|
|
||||||
dijit.byId("content-insert").domNode.setStyle(
|
|
||||||
{height: getCookie("ttrss_ci_height") + "px" });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dijit.byId("main").resize();
|
dijit.byId("main").resize();
|
||||||
|
|
||||||
var tmph = dojo.connect(dijit.byId('feeds-holder'), 'resize',
|
var tmph = dojo.connect(dijit.byId('feeds-holder'), 'resize',
|
||||||
|
@ -706,6 +699,10 @@ function quickMenuGo(opid) {
|
||||||
if (!isCdmMode()) {
|
if (!isCdmMode()) {
|
||||||
_widescreen_mode = !_widescreen_mode;
|
_widescreen_mode = !_widescreen_mode;
|
||||||
|
|
||||||
|
// reset stored sizes because geometry changed
|
||||||
|
setCookie("ttrss_ci_width", 0);
|
||||||
|
setCookie("ttrss_ci_height", 0);
|
||||||
|
|
||||||
switchPanelMode(_widescreen_mode);
|
switchPanelMode(_widescreen_mode);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1077,6 +1074,11 @@ function switchPanelMode(wide) {
|
||||||
height: 'auto',
|
height: 'auto',
|
||||||
borderTopWidth: '0px' });
|
borderTopWidth: '0px' });
|
||||||
|
|
||||||
|
if (parseInt(getCookie("ttrss_ci_width")) > 0) {
|
||||||
|
dijit.byId("content-insert").domNode.setStyle(
|
||||||
|
{width: getCookie("ttrss_ci_width") + "px" });
|
||||||
|
}
|
||||||
|
|
||||||
$("headlines-frame").setStyle({ borderBottomWidth: '0px' });
|
$("headlines-frame").setStyle({ borderBottomWidth: '0px' });
|
||||||
$("headlines-frame").addClassName("wide");
|
$("headlines-frame").addClassName("wide");
|
||||||
|
|
||||||
|
@ -1088,6 +1090,11 @@ function switchPanelMode(wide) {
|
||||||
height: '50%',
|
height: '50%',
|
||||||
borderTopWidth: '0px'});
|
borderTopWidth: '0px'});
|
||||||
|
|
||||||
|
if (parseInt(getCookie("ttrss_ci_height")) > 0) {
|
||||||
|
dijit.byId("content-insert").domNode.setStyle(
|
||||||
|
{height: getCookie("ttrss_ci_height") + "px" });
|
||||||
|
}
|
||||||
|
|
||||||
$("headlines-frame").setStyle({ borderBottomWidth: '1px' });
|
$("headlines-frame").setStyle({ borderBottomWidth: '1px' });
|
||||||
$("headlines-frame").removeClassName("wide");
|
$("headlines-frame").removeClassName("wide");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue