HotTowel-Angular icon indicating copy to clipboard operation
HotTowel-Angular copied to clipboard

sidebar isCurrent() issue

Open asiridissa opened this issue 11 years ago • 0 comments

Hi Jhon,

I have both 'Item' and 'Item category' as two route titles in config.route.js. The issue is when I select 'Item category' it also highlight 'Item' in side menu too.

I changed the sidebar.js

return $route.current.title.substr(0, menuName.length) === menuName ? 'current' : '';

as

return $route.current.title === menuName ? 'current' : '';

and now works fine. Keep up the great work Jhon.

Thanks.

asiridissa avatar Feb 22 '14 07:02 asiridissa