diff --git a/src/index.html b/src/index.html index b22575d3d..467e6c1a9 100644 --- a/src/index.html +++ b/src/index.html @@ -98,7 +98,7 @@ @@ -137,7 +137,7 @@
  • - + IN TRIAL - SETUP BILLING HERE
  • diff --git a/src/js/appstore.js b/src/js/appstore.js index dad8bcc19..bdaf02314 100644 --- a/src/js/appstore.js +++ b/src/js/appstore.js @@ -176,6 +176,10 @@ angular.module('Application').service('AppStore', ['$http', '$base64', 'Client', $http.get(Client.getConfig().apiServerOrigin + '/api/v1/profile', { params: { accessToken: token }}).success(function (data, status) { if (status !== 200) return callback(new AppStoreError(status, data)); + + // just some helper property, since angular bindings cannot dot his easily + data.profile.emailEncoded = encodeURIComponent(data.profile.email); + return callback(null, data.profile); }).error(function (data, status) { return callback(new AppStoreError(status, data)); diff --git a/src/views/settings.html b/src/views/settings.html index 69cceb9c6..99a4a8bc8 100644 --- a/src/views/settings.html +++ b/src/views/settings.html @@ -390,7 +390,7 @@ Account Email
    - {{ appstoreConfig.profile.email }} + {{ appstoreConfig.profile.email }}
    @@ -412,9 +412,9 @@