From b9f8f6e33dbf6183e15c9b2674b1352eb672df6f Mon Sep 17 00:00:00 2001 From: shale Date: Tue, 14 Jul 2015 10:02:27 -0700 Subject: [PATCH] [Search] Code style --- platform/features/search/src/SearchController.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/platform/features/search/src/SearchController.js b/platform/features/search/src/SearchController.js index 6133ed87b8..eaa87c8747 100644 --- a/platform/features/search/src/SearchController.js +++ b/platform/features/search/src/SearchController.js @@ -57,7 +57,7 @@ define(function () { itemsLength = items.length; // Then filter through the items list - for (i = 0; i < itemsLength; i++) { + for (i = 0; i < itemsLength; i += 1) { // Prevent errors from getModel not being defined if (items[i].getModel) { itemModel = items[i].getModel(); @@ -110,17 +110,17 @@ define(function () { //console.log('raw results', rawResults); // Get the result objects' IDs - for (i = 0; i < resultsLength; i++) { + for (i = 0; i < resultsLength; i += 1) { ids.push(results[i][ID]); } // Get the domain objects from their IDs return objectService.getObjects(ids).then(function (objects) { var output = [], - id, + id, j; - for (j = 0; j < resultsLength; j++) { + for (j = 0; j < resultsLength; j += 1) { id = ids[j]; // Include any item except folders @@ -141,7 +141,7 @@ define(function () { return { // Search the database using the user input of id "searchinput" search: function (inputID) { - searchElastic(inputID).then( function (c) { + searchElastic(inputID).then(function (c) { $scope.results = c; }); },