mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-06 12:11:02 +01:00
20 lines
382 B
JavaScript
20 lines
382 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('chat')
|
|
.run(menuConfig);
|
|
|
|
menuConfig.$inject = ['menuService', '$translate'];
|
|
|
|
function menuConfig(menuService, $translate) {
|
|
// Set top bar menu items
|
|
menuService.addMenuItem('topbar', {
|
|
title: $translate.instant('MENU_CHAT'),
|
|
state: 'chat',
|
|
roles: ['*'],
|
|
position: 2
|
|
});
|
|
}
|
|
}());
|