chg(core): change the User Ranking menu item position into about

This commit is contained in:
OldHawk
2017-10-30 10:53:58 +08:00
parent 5910272a94
commit c63f926bb2
5 changed files with 21 additions and 21 deletions

View File

@@ -8,12 +8,11 @@
menuConfig.$inject = ['menuService'];
function menuConfig(menuService) {
menuService.addMenuItem('topbar', {
title: 'MENU_RANKING',
menuService.addSubMenuItem('topbar', 'about', {
title: 'MENU_ABOUT_RANKING',
state: 'ranking',
roles: ['*'],
class: 'sm-hide',
position: 4
position: 2,
divider: true
});
}
}());