This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/components/hamburger-category.js.es6
Robin Ward c5460b7d3f FEATURE: Full height hamburger menu
- Rename `site-map` to `hamburger-menu`
- Includes acceptance tests
2015-08-25 16:48:43 -04:00

14 lines
382 B
JavaScript

import computed from 'ember-addons/ember-computed-decorators';
export default Ember.Component.extend({
tagName: 'li',
classNames: ['category-link'],
@computed('category.unreadTopics', 'category.newTopics')
unreadTotal(unreadTopics, newTopics) {
return parseInt(unreadTopics, 10) + parseInt(newTopics, 10);
},
showTopicCount: Ember.computed.not('currentUser')
});