Footer funzionante e fissato in basso
[YouAndWeb_TwoToc] / client / app / contact / contact.js
1 'use strict';
2
3 angular.module('dashboardApp')
4   .config(function($stateProvider) {
5     $stateProvider
6     .state('contact', {
7         url: '/contact',
8         templateUrl: 'app/contact/contact.html',
9         controller: 'ContactCtrl',
10         params: {
11           lng: null,
12           lat: null
13         }
14       })
15   });