Skip to content

Commit

Permalink
Rename constant module
Browse files Browse the repository at this point in the history
  • Loading branch information
johardi committed Aug 9, 2017
1 parent a24cef8 commit 499e8e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/search/search.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ angular.module('search')
'UserProfiles',

function($scope, CseRequestService, CseDataService, CategoryFacetService, RangeFacetService,
BreadcrumbService, FilterService, NerService, userProfiles) {
BreadcrumbService, FilterService, NerService, UserProfiles) {

$scope.appVersion = 0.4;
$scope.profileName = "default";
$scope.profiles = userProfiles;
$scope.profiles = UserProfiles;
$scope.structuredSearchResults = [];
$scope.nonStructuredSearchResults = [];
$scope.categoryFacets = CategoryFacetService.categoryFacets;
Expand All @@ -33,7 +33,7 @@ function($scope, CseRequestService, CseDataService, CategoryFacetService, RangeF

resetServices();

var profile = userProfiles[$scope.profileName];
var profile = UserProfiles[$scope.profileName];
var input = processUserInput(userInput);
var userKeyword = input.keyword;
var userTopics = input.topics;
Expand Down

0 comments on commit 499e8e4

Please sign in to comment.