summaryrefslogtreecommitdiff
path: root/client/js/services
diff options
context:
space:
mode:
Diffstat (limited to 'client/js/services')
-rw-r--r--client/js/services/Identity.js6
-rw-r--r--client/js/services/Loading.js15
2 files changed, 13 insertions, 8 deletions
diff --git a/client/js/services/Identity.js b/client/js/services/Identity.js
index da85ecd..db93e97 100644
--- a/client/js/services/Identity.js
+++ b/client/js/services/Identity.js
@@ -1,5 +1,5 @@
-mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
+mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
/* Create profile structure to store informations
* about current session
@@ -51,6 +51,9 @@ mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
token=null;
profile.username=null;
profile.projectname=null;
+
+ // Reload Page
+ location.reload();
}
@@ -95,6 +98,7 @@ mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
else{
requestParserResult.failReason="Please check your username, password and project name !";
}
+
return requestParserResult;
};
diff --git a/client/js/services/Loading.js b/client/js/services/Loading.js
index b12aaa0..db06194 100644
--- a/client/js/services/Loading.js
+++ b/client/js/services/Loading.js
@@ -1,22 +1,23 @@
-mainApp.factory('Loading',[ '$http', 'Identity', function($http, Identity){
-
-
-
-
+mainApp.factory('Loading',[ function(){
+ /**
+ * Display Loading modal
+ */
var start=function(){
$('#loadingModal').modal({backdrop: 'static', keyboard: false});
};
+ /**
+ * Hide Loading modal
+ */
var stop=function(){
$('#loadingModal').modal('hide');
}
+ // Service returns
return {
start:start,
stop:stop
};
-
-
}]);