From 379db72c90e7d07e60d37be7deaba2a768496f0b Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Fri, 24 Jan 2014 13:59:29 -0500 Subject: [PATCH] Don't show category badges on /category/:slug on mobile, unless there are sub-categories --- .../templates/mobile/list/topic_list_item.js.handlebars | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars b/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars index 01f778166a2..db1e6c97c6f 100644 --- a/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars +++ b/app/assets/javascripts/discourse/templates/mobile/list/topic_list_item.js.handlebars @@ -26,9 +26,11 @@
-
- {{categoryLink category}} -
+ {{#unless controller.hideCategory}} +
+ {{categoryLink category}} +
+ {{/unless}}