Commit 38daa33ef683bfb7f5c5f6be8cd340a9a6ef092c

Authored by Nikita Kulshreshtha
1 parent 69b00c58

removed debugger

400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... ... @@ -59,8 +59,6 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
59 59  
60 60 $scope.openModuleItemView = function (event) {
61 61  
62   - debugger;
63   -
64 62 //0. Get selected Image Id
65 63 var moduleItemDataToBeSaved = event.target.id;
66 64  
... ... @@ -184,7 +182,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
184 182 .then(
185 183 function (result) {
186 184 $scope.aaPinData = result.data.Root.Item;
187   - debugger;
  185 +
188 186 angular.forEach($scope.aaPinData, function (value, key) {
189 187  
190 188 $scope.context.beginPath();
... ... @@ -259,7 +257,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
259 257 var promise = ModuleService.loadModuleDataBasedOnModuleName($scope.moduleName)
260 258 .then(
261 259 function (result) {
262   - alert("mukul");
  260 +
263 261 // alert(JSON.stringify($scope.moduleLandingData));
264 262 $scope.moduleLandingData = result;
265 263 $scope.selectedAAListViewData = new jinqJs()
... ...