+
+
diff --git a/www/assets/css/style.css b/www/assets/css/style.css
index 04af7b6f3..a50bb9875 100644
--- a/www/assets/css/style.css
+++ b/www/assets/css/style.css
@@ -2863,6 +2863,11 @@ h1.about-header {
@media(max-width:767px) {
+ .home-welcome-anony-hasuser {
+ display: none;
+ }
+}
+@media(min-width:768px) {
.home-welcome-user {
display: none;
}
diff --git a/www/assets/js/controllers.js b/www/assets/js/controllers.js
index 0edafb83e..2527fc4c0 100644
--- a/www/assets/js/controllers.js
+++ b/www/assets/js/controllers.js
@@ -100,6 +100,9 @@ NGApp.controller( 'RestaurantsCtrl', function ( $scope, $rootScope, $http, $loca
$location.path( '/' );
return;
}
+
+ var motivationText = ['You are awesome','You are loved','You are beautiful','You\'re at the top of your game'];
+ $scope.motivationText = motivationText[Math.floor(Math.random() * motivationText.length)];
var restaurants = RestaurantsService;