diff --git a/front-ui/app/components/shared/sectionsListComponent.js b/front-ui/app/components/shared/sectionsListComponent.js index bc5ebbb..419ffb8 100644 --- a/front-ui/app/components/shared/sectionsListComponent.js +++ b/front-ui/app/components/shared/sectionsListComponent.js @@ -31,13 +31,18 @@ var SectionsListComponent = React.createClass({ }, onMouseOut: function() { - SectionActions.unsetSectionHover(); + SectionActions.unsetSectionHover(); + }, + onMouseLeave: function() { + SectionActions.unsetSectionHover(); }, onSectionClick: function(section) { + SectionActions.unsetSectionHover(); NavigationActions.goToSection(section); return false; }, onCategoryClick: function(category, section) { + SectionActions.unsetSectionHover(); NavigationActions.goToCategory(new Category(category), section); return false; }, @@ -61,13 +66,14 @@ var SectionsListComponent = React.createClass({ {this.state.sections.map(function(section) { return ( -
  • - +
  • + { section.get('name') } +
    -