From abe7b1fd2ec75b1a4c35222cf0c46e6deef8a09b Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Mon, 4 May 2015 08:54:47 +0930 Subject: [PATCH] Don't enable pane pinned by default --- js/forum/src/utils/pane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/forum/src/utils/pane.js b/js/forum/src/utils/pane.js index a1bac964f..5e7014c5a 100644 --- a/js/forum/src/utils/pane.js +++ b/js/forum/src/utils/pane.js @@ -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();