mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:05:55 +00:00
persist widescreen mode in session
This commit is contained in:
13
js/tt-rss.js
13
js/tt-rss.js
@@ -336,6 +336,12 @@ function init_second_stage() {
|
||||
updateFeedList();
|
||||
closeArticlePanel();
|
||||
|
||||
_widescreen_mode = getInitParam("widescreen");
|
||||
|
||||
if (_widescreen_mode) {
|
||||
switchPanelMode(_widescreen_mode);
|
||||
}
|
||||
|
||||
if (typeof themeAfterLayout == 'function') {
|
||||
themeAfterLayout();
|
||||
}
|
||||
@@ -1007,6 +1013,13 @@ function switchPanelMode(wide) {
|
||||
|
||||
if (article_id) view(article_id);
|
||||
|
||||
new Ajax.Request("backend.php", {
|
||||
parameters: "op=rpc&method=setpanelmode&wide=" + (wide ? 1 : 0),
|
||||
onComplete: function(transport) {
|
||||
console.log(transport.responseText);
|
||||
} });
|
||||
|
||||
|
||||
} catch (e) {
|
||||
exception_error("switchPanelMode", e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user