diff --git a/.gitignore b/.gitignore
index 1623c54d78083877b16bfdba62a6706416ca9165..75e43cc78eac0399568f4958184869cab5ddbd83 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,8 +13,11 @@ www/css/ionic.app.css
 www/css/ionic.app.min.css
 
 www/js/config.js
+www/lib/angular
 www/lib/angular-animate
 www/lib/angular-messages
 www/lib/angular-sanitize
 www/lib/angular-ui-router
+www/lib/angular-moment
+www/lib/moment
 www/lib/waves
diff --git a/README.md b/README.md
index 676459011f29cb8efbc5974f3ec4ce444c0b5b39..90bd67640776be9b5eb9a5f0d984d5f3afc31845 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
 # Cesium
 
-[Unhosted webapp](https://unhosted.org) client for [duniter](http://duniter.org) network.
+[Unhosted webapp](https://unhosted.org) client for [Duniter](https://duniter.org) network.
 
-Try it at: http://cesium.duniter.iofr
+Try it at: http://cesium.duniter.fr
 
 ## Developer
 
diff --git a/gulpfile.js b/gulpfile.js
index 0f7750c92eddf5105dad8c3d2d7e738aa6b07d8d..f082ea47c15ffa591e070b0fde66a77b1ec77335 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -20,7 +20,7 @@ var paths = {
   templates: ['./www/templates/**/*.html']
 };
 
-gulp.task('default', ['sass','config']);
+gulp.task('default', ['sass', 'config']);
 
 gulp.task('sass', function(done) {
   gulp.src('./scss/ionic.app.scss')
@@ -45,7 +45,7 @@ gulp.task('sass', function(done) {
 gulp.task('watch', function() {
   gulp.watch(paths.sass, ['sass']);
   //gulp.watch(paths.config, ['config']);
-  gulp.watch(paths.templates, ['removeCode']);
+  //gulp.watch(paths.templates, ['removeCode']);
 });
 
 gulp.task('install', ['git-check'], function() {
diff --git a/www/css/style.css b/www/css/style.css
index 852f66b6ea4be659ecd210644b1a77ba9f2f963a..c5fbc74e67b12243c947bf63785e101298918153 100644
--- a/www/css/style.css
+++ b/www/css/style.css
@@ -76,18 +76,6 @@
   font-style: italic !important;
 }
 
-/*#wallet .item .comment-bubble{
-  font-style: italic !important;
-  border-radius: .75rem;
-  background: #e6e5eb;
-  color: #383641;
-  margin: 0;
-  font-size: 12px;
-  padding-right: 8px;
-  padding-top: 2px;
-  padding-bottom: 2px;
-}*/
-
 #wallet .item h3 .gray{
   font-size: 11px ! important;
 }
diff --git a/www/js/controllers/wot-controllers.js b/www/js/controllers/wot-controllers.js
index 6bdba064849f1d91dd6420150e002e0aec6cad44..c0adef4f5953758bdbc72375f3a6b51cbc43c32b 100644
--- a/www/js/controllers/wot-controllers.js
+++ b/www/js/controllers/wot-controllers.js
@@ -169,7 +169,7 @@ function WotIdentityViewController($scope, $state, BMA, Wallet, UIUtils, $q, $ti
         .then(function(block) {
           $scope.identity.sigDate = block.time;
           // Retrieve sigDate
-          if (Wallet.isLogin()) {
+          if (Wallet.isLogin() && !!Wallet.data.parameters && !!Wallet.data.parameters.sigQty) {
             $scope.sigQty =  Wallet.data.parameters.sigQty;
             onLoadFinish();
           }
diff --git a/www/lib/ionic/scss/tsconfig.json b/www/lib/ionic/scss/tsconfig.json
new file mode 100644
index 0000000000000000000000000000000000000000..6b58d2e6055f12ff0747d4dcf637bcd16f0713cd
--- /dev/null
+++ b/www/lib/ionic/scss/tsconfig.json
@@ -0,0 +1,18 @@
+{
+    "version": "1.5.0-alpha",
+    "compilerOptions": {
+        "target": "es5",
+        "module": "commonjs",
+        "declaration": false,
+        "noImplicitAny": false,
+        "removeComments": true,
+        "noLib": false,
+        "preserveConstEnums": true,
+        "suppressImplicitAnyIndexErrors": true
+    },
+    "filesGlob": [
+        "./**/*.ts",
+        "!./node_modules/**/*.ts"
+    ],
+    "files": []
+}