This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show loading screen before ng starts up Adds ngAnimate Closes #118
- Loading branch information
Christine Yu
authored and
Shane Wilson
committed
Nov 17, 2014
1 parent
2ff4c16
commit 229823d
Showing
8 changed files
with
69 additions
and
7 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
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
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 |
---|---|---|
@@ -1,16 +1,19 @@ | ||
module ngApp.home.controllers { | ||
import ICoreService = ngApp.core.services.ICoreService; | ||
|
||
export interface IHomeController { | ||
} | ||
|
||
class HomeController implements IHomeController { | ||
/* @ngInject */ | ||
constructor(private $rootScope: ngApp.IRootScope) { | ||
$rootScope.pageTitle = "Home"; | ||
constructor(private CoreService: ICoreService) { | ||
CoreService.setPageTitle("Welcome"); | ||
} | ||
} | ||
|
||
angular | ||
.module("home.controller", [ | ||
"core.services" | ||
]) | ||
.controller("HomeController", HomeController); | ||
} |
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
File renamed without changes.
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