Commit 15aaa43e0b8f055d88fd8be38ce260acfecf3b1b
1 parent
b0665952
Commit Changes
Showing
1 changed file
with
5 additions
and
5 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
... | ... | @@ -156,7 +156,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
156 | 156 | } |
157 | 157 | |
158 | 158 | $scope.isReviewBtnSelected = false; |
159 | - $rootScope.selectedDivArray = []; | |
159 | + // $rootScope.selectedDivArray = []; | |
160 | 160 | $scope.nextQuiz = function () { |
161 | 161 | |
162 | 162 | //need to save all questions till the current question number when user clicks on save |
... | ... | @@ -173,7 +173,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
173 | 173 | $scope.CreateLabExerciseDataToSave(); |
174 | 174 | } |
175 | 175 | |
176 | - console.log($rootScope.selectedDivArray); | |
176 | + // console.log($rootScope.selectedDivArray); | |
177 | 177 | $scope.dragableId = ""; |
178 | 178 | if ($scope.quiznumber == $scope.TotalNumberofQuiz) |
179 | 179 | return; |
... | ... | @@ -212,7 +212,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
212 | 212 | |
213 | 213 | |
214 | 214 | $scope.prevQuiz = function () { |
215 | - debugger; | |
215 | + | |
216 | 216 | if ($scope.quiznumber != 1) { |
217 | 217 | // $scope.quizQuesNo = $scope.quizQuesNo - 1; |
218 | 218 | // $scope.selectedQuestionNo = $scope.quizQuesNo; |
... | ... | @@ -255,7 +255,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
255 | 255 | |
256 | 256 | |
257 | 257 | $scope.SubmitAttempt = function () { |
258 | - debugger; | |
258 | + | |
259 | 259 | $scope.CreateLabExerciseDataToSave(); |
260 | 260 | |
261 | 261 | $("#submitResultHtml").css("display", "block"); |
... | ... | @@ -512,7 +512,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
512 | 512 | |
513 | 513 | $scope.usersCorrectQuestData = []; |
514 | 514 | $scope.CreateLabExerciseDataToSave = function () { |
515 | - debugger; | |
515 | + | |
516 | 516 | $scope.LabExerciseAttemptedData = []; |
517 | 517 | $scope.lb = []; |
518 | 518 | //get user answers | ... | ... |