mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-05-06 23:47:19 +02:00
fix(docs): Fix comments content and style
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
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
// Configuring the Articles module
|
||||
// Configuring the Users module
|
||||
angular.module('users.admin').run(['Menus',
|
||||
function (Menus) {
|
||||
Menus.addSubMenuItem('topbar', 'admin', {
|
||||
|
||||
@@ -5,7 +5,7 @@ angular.module('users').controller('PasswordController', ['$scope', '$stateParam
|
||||
$scope.authentication = Authentication;
|
||||
$scope.popoverMsg = PasswordValidator.getPopoverMsg();
|
||||
|
||||
//If user is signed in then redirect back home
|
||||
// If user is signed in then redirect back home
|
||||
if ($scope.authentication.user) {
|
||||
$location.path('/');
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
// Use Applicaion configuration module to register a new module
|
||||
// Use Application configuration module to register a new module
|
||||
ApplicationConfiguration.registerModule('users', ['core']);
|
||||
ApplicationConfiguration.registerModule('users.admin', ['core.admin']);
|
||||
ApplicationConfiguration.registerModule('users.admin.routes', ['core.admin.routes']);
|
||||
|
||||
Reference in New Issue
Block a user