-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
QUALITY: Alter build system to enable angular 2 migration
- Loading branch information
Showing
24 changed files
with
437 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ tmp.scss | |
.vscode | ||
.tscache | ||
a.env | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// # | ||
// # Doubtfire - A lightweight, modern learning management system | ||
// # | ||
// # Doubtfire is modularised into many modules, as indicated by the directory | ||
// # tree inside app/ | ||
// # | ||
import { downgradeInjectable } from '@angular/upgrade/static'; | ||
|
||
import { AboutDoubtfireModal } from 'src/app/common/modals/about-doubtfire-modal/about-doubtfire-modal' | ||
|
||
var angular = window['angular']; | ||
|
||
var m = angular.module('doubtfire', [ | ||
'doubtfire.config', | ||
'doubtfire.api', | ||
'doubtfire.sessions', | ||
'doubtfire.common', | ||
'doubtfire.errors', | ||
'doubtfire.home', | ||
'doubtfire.admin', | ||
'doubtfire.units', | ||
'doubtfire.tasks', | ||
'doubtfire.projects', | ||
'doubtfire.groups', | ||
'doubtfire.visualisations']); | ||
|
||
m.factory('AboutDoubtfireModal', | ||
downgradeInjectable(AboutDoubtfireModal) | ||
); | ||
|
||
export class DoubtfireAppModule { | ||
public static angularJS = angular; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 0 additions & 73 deletions
73
src/app/common/modals/about-doubtfire-modal/about-doubtfire-modal.js
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
src/app/common/modals/about-doubtfire-modal/about-doubtfire-modal.old.coffee
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.