1
0
mirror of https://github.com/flarum/core.git synced 2025-07-21 16:51:34 +02:00

Don't enable pane pinned by default

This commit is contained in:
Toby Zerner
2015-05-04 08:54:47 +09:30
parent 2b8f7d41f4
commit 05e1fc88b6

View File

@@ -4,7 +4,7 @@ export default class Pane {
this.$element = $(element);
this.pinned = localStorage.getItem(this.pinnedKey) !== 'false';
this.pinned = localStorage.getItem(this.pinnedKey) === 'true';
this.active = false;
this.showing = false;
this.render();