From 3a674b81f2634a0a70f9607837972457edb7e227 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Tue, 16 Apr 2013 23:34:26 +0200 Subject: [PATCH] Fix #1043. --- CHANGELOG.md | 2 ++ src/features.coffee | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d3b7d08f..b6563eb0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +- Fix inputs in the `Rice` tab being empty when `Custom Board Navigation` is disabled. + ### 3.1.3 - *2013-04-16* - Fix Chrome freezing when switching from the `Filter` tab to another tab in the settings. diff --git a/src/features.coffee b/src/features.coffee index 0fd60d641..fc8fced97 100644 --- a/src/features.coffee +++ b/src/features.coffee @@ -85,7 +85,9 @@ Header = Header.setCatalogLinks Conf['Header catalog links'] generateBoardList: (text) -> - list = $ '#custom-board-list', Header.bar + unless list = $ '#custom-board-list', Header.bar + # init'd with the custom board list disabled. + return $.rmAll list return unless text as = $$('#full-board-list a', Header.bar)[0...-2] # ignore the Settings and Home links