uncomment jshint and fix minor bug
rename myCustomer to imgType (customer to check if image is portrait or landscape)
(function(){
'use strict';
angular.module('ammico')
.controller('routeClassCtrl', function($scope, $location) {
$scope.isActive = function(route) {
return route === $location.path();
};
});
})();