diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/AuthenticationController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/AuthenticationController.js
index b72e681..aee2947 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/AuthenticationController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/AuthenticationController.js
@@ -8,7 +8,6 @@ AIA.controller("AuthenticationController", ["$scope", "$log", "$location", '$win
$scope.login = function () {
-
// alert('called controller');
$scope.IsAuthenticated = AuthenticationService.authenticateUser('superadmin', 'education');
if ($scope.IsAuthenticated) {
diff --git a/400-SOURCECODE/AIAHTML5.Web/app/services/ModuleService.js b/400-SOURCECODE/AIAHTML5.Web/app/services/ModuleService.js
index 57a5e45..5f61e7b 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/services/ModuleService.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/services/ModuleService.js
@@ -1,9 +1,8 @@
-AIA.service('ModuleService', function () {
-this.SaveOpenedModules = function () {
- return
- {
- true;
-// alert('called service');
- }
-};
+AIA.factory('ModuleService', function () {
+ return {
+ SaveOpenedModules: function () {
+ console.log('called service');
+ return true;
+ }
+ };
});
\ No newline at end of file