--- a/client/app/home/home_controller.js Wed May 27 18:58:39 2015 +0200
+++ b/client/app/home/home_controller.js Wed May 27 18:59:55 2015 +0200
@@ -1,32 +1,32 @@
(function(){
- 'use strict';
+ 'use strict';
- angular.module('ammicoHome',['ngRoute'])
- .config(function ($routeProvider) {
- $routeProvider
- .when('/', {
- templateUrl: 'home/home.html',
- controller: 'homeCtrl'
- });
- })
- .controller('homeCtrl', function($scope, $location){
- $scope.searchSubmit = function(){
- $location.path('/search/' + $scope.q);
- };
- })
- .filter('meta', function() {
- return function(input, metaName) {
- var nb = input.length, i = 0, found = false;
- while(found===false && i<nb){
- if(input[i].name===metaName){
- found = true;
- return input[i].value;
- }
- i++;
- }
- return '';
- };
- });
+ angular.module('ammicoHome',['ngRoute'])
+ .config(function ($routeProvider) {
+ $routeProvider
+ .when('/', {
+ templateUrl: 'home/home.html',
+ controller: 'homeCtrl'
+ });
+ })
+ .controller('homeCtrl', function($scope, $location){
+ $scope.searchSubmit = function(){
+ $location.path('/search/' + $scope.q);
+ };
+ })
+ .filter('meta', function() {
+ return function(input, metaName) {
+ var nb = input.length, i = 0, found = false;
+ while(found===false && i<nb){
+ if(input[i].name===metaName){
+ found = true;
+ return input[i].value;
+ }
+ i++;
+ }
+ return '';
+ };
+ });
})();