'use strict'; angular.module('satbd.satellite.bar.views.search',[ 'ngRoute' ]).config(function($routeProvider) { $routeProvider.when('/search', { templateUrl: 'js/views/search/search.html', controller: 'SearchCtrl' }); }).controller('SearchCtrl', function($scope,$routeParams) { $scope.terms=$routeParams.q; });