Skip to content

Commit bc59893

Browse files
committed
renamed module to namespace for internal modules.
1 parent f374e05 commit bc59893

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+48
-48
lines changed

src/client/app/admin/admin.controller.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/app/admin/admin.controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module app.admin {
1+
namespace app.admin {
22
'use strict';
33

44
interface IAdminVm {
55
title: string;
6-
}
6+
}
77
export class AdminController implements IAdminVm {
88
title: string = 'Admin';
99

src/client/app/admin/admin.module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/app/admin/admin.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module app.admin {
1+
namespace app.admin {
22
'use strict';
33

44
angular.module('app.admin', [

src/client/app/admin/admin.route.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/app/admin/admin.route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module app.admin {
1+
namespace app.admin {
22
'use strict';
33

44
angular

src/client/app/app.module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/app/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module app {
1+
namespace app {
22
'use strict';
33

44
angular.module('app', [

src/client/app/blocks/exception/exception-handler.provider.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/app/blocks/exception/exception-handler.provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Include in index.html so that app level exceptions are handled.
22
// Exclude from testRunner.html which should run exactly what it wants to run
33

4-
module blocks.exception {
4+
namespace blocks.exception {
55
'use strict';
66

77
export interface IExceptionHandlerConfig {

0 commit comments

Comments
 (0)