From 8dbec7612b59bdfd5109e5bab690466763c6a320 Mon Sep 17 00:00:00 2001 From: baldo Date: Mon, 20 Jun 2016 22:28:01 +0200 Subject: [PATCH] Texts and URL fixes --- admin/js/main.js | 2 +- app/scripts/app.js | 2 +- app/views/directives/nodeForm.html | 12 +++++++++--- app/views/newNodeForm.html | 2 +- server/utils/urlBuilder.js | 2 +- 5 files changed, 13 insertions(+), 7 deletions(-) diff --git a/admin/js/main.js b/admin/js/main.js index 4928cf3..a1a6a09 100644 --- a/admin/js/main.js +++ b/admin/js/main.js @@ -95,7 +95,7 @@ angular.module('ffffngAdmin').config(function(NgAdminConfigurationProvider, Rest .listActions( ' ' + ' ' + - '
' + + '' + '' + '' + '
' + diff --git a/app/scripts/app.js b/app/scripts/app.js index 74758b7..52a5eae 100644 --- a/app/scripts/app.js +++ b/app/scripts/app.js @@ -63,7 +63,7 @@ angular.module('ffffng', [ }) .run(function ($location, $rootScope, config) { $rootScope.$on('$routeChangeSuccess', function (event, current) { - $rootScope.title = current.$$route.title; + $rootScope.title = current.$$route ? (current.$$route.title || '') : ''; $rootScope.config = config; }); }); diff --git a/app/views/directives/nodeForm.html b/app/views/directives/nodeForm.html index 1d612e3..f10746c 100644 --- a/app/views/directives/nodeForm.html +++ b/app/views/directives/nodeForm.html @@ -98,10 +98,16 @@
-

Möchtest Du Status-E-Mails bekommen?

+

Möchtest Du automatisiert Status-E-Mails bekommen?

- Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. + Du kannst Dich automatisiert benachrichtigen lassen, sobald Dein Knoten längere Zeit offline ist. + Die erste E-Mail bekommst Du nach 3 Stunden, nach einem Tag gibt es dann nochmal eine Erinnerung. Sollte + Dein Knoten nach einer Woche immernoch offline sein, bekommst Du eine letzte Status-E-Mail. +

+

+ Du kannst den automatisierten Versand von Status-E-Mails hier selbstverständlich jederzeit + wieder deaktivieren.

@@ -132,7 +138,7 @@

Zur Bestätigung Deiner E-Mail-Adresse schicken wir Dir nach dem Speichern Deiner Knotendaten - eine E-Mail mit einem Bestätiguns-Link. Erst nach der Bestätigung deiner E-Mail-Adresse + eine E-Mail mit einem Bestätigungs-Link. Erst nach der Bestätigung deiner E-Mail-Adresse wirst Du informiert, falls Dein Knoten längere Zeit offline ist.

diff --git a/app/views/newNodeForm.html b/app/views/newNodeForm.html index c82af5c..0f1b840 100644 --- a/app/views/newNodeForm.html +++ b/app/views/newNodeForm.html @@ -7,7 +7,7 @@ abschließen.

- Und keine Sorge: Datenschutz ist uns genauso wichtig, wie Dir. + Und keine Sorge: Datenschutz ist uns genauso wichtig wie Dir.

diff --git a/server/utils/urlBuilder.js b/server/utils/urlBuilder.js index b63ab3c..ac8a8a5 100644 --- a/server/utils/urlBuilder.js +++ b/server/utils/urlBuilder.js @@ -4,7 +4,7 @@ angular.module('ffffng').factory('UrlBuilder', function (_, config) { function formUrl(route, queryParams) { var url = config.server.baseUrl; if (route || queryParams) { - url += '/#!/'; + url += '/#/'; } if (route) { url += route;