Pre Yoeman
[YouAndWeb_TwoToc] / client / search / search.js
1 'use strict';
2
3 angular.module('dashboardApp')
4   .config(function($stateProvider) {
5     $stateProvider
6     .state('search', {
7         url: '/search',
8         templateUrl: 'app/search/search.html',
9         controller: 'SearchCtrl',
10         params: {
11           lng: null,
12           lat: null
13         }
14       })
15       /*.state('showOrga', {
16         url: '/:id',
17         templateUrl: 'app/organizza/showOrga/showOrg.html',
18         controller: 'ShowOrgaCtrl'
19       });*/
20   });