12 lines
180 B
TypeScript
12 lines
180 B
TypeScript
|
// #docregion
|
||
|
'use strict';
|
||
|
|
||
|
// Define the `phonecatApp` AngularJS module
|
||
|
angular.module('phonecatApp', [
|
||
|
'ngAnimate',
|
||
|
'ngRoute',
|
||
|
'core',
|
||
|
'phoneDetail',
|
||
|
'phoneList',
|
||
|
]);
|