mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-18 01:50:37 +01:00
Changed some bad comments referencing the Articles module in other modules.
Typo fixed in xxx.client.modules.js files ("Application" => "Applicaion")
Full stop character removed at the end of line comments
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
'use strict';
|
|
|
|
// Configuring the Users module
|
|
angular.module('users.admin').run(['Menus',
|
|
function (Menus) {
|
|
Menus.addSubMenuItem('topbar', 'admin', {
|
|
title: 'Manage Users',
|
|
state: 'admin.users'
|
|
});
|
|
}
|
|
]);
|