| changeset 25 | 4053d9a44548 |
| parent 14 | 4d27fbc3f9df |
| 24:21ecbde9e080 | 25:4053d9a44548 |
|---|---|
1 (function(){ |
|
2 'use strict'; |
|
3 |
|
4 |
|
5 angular.module('ammicoAuth',['ngRoute']) |
|
6 .config(function ($routeProvider) { |
|
7 $routeProvider |
|
8 .when('/', { |
|
9 templateUrl: 'auth/auth.html', |
|
10 controller: 'authCtrl' |
|
11 }); |
|
12 }) |
|
13 .controller('authCtrl', function(){ |
|
14 }); |
|
15 })(); |