summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-12-15 20:39:01 +0200
committerLauri Ojansivu <x@xet7.org>2018-12-15 20:39:01 +0200
commitdbb1a86ca377e551063cc04c5189fad4aa9148c0 (patch)
tree0c2eebc93e53c0416faa56b31fb0bebd9af60ca1 /config
parentc066883dbd76110be19d75bd77ef2a0270dadda2 (diff)
downloadwekan-dbb1a86ca377e551063cc04c5189fad4aa9148c0.tar.gz
wekan-dbb1a86ca377e551063cc04c5189fad4aa9148c0.tar.bz2
wekan-dbb1a86ca377e551063cc04c5189fad4aa9148c0.zip
- Admin Panel / Layout / Custom Product Name now changes webpage title.
Thanks to xet7 ! Related #1196
Diffstat (limited to 'config')
-rw-r--r--config/router.js27
1 files changed, 16 insertions, 11 deletions
diff --git a/config/router.js b/config/router.js
index 91d08897..80e89e4c 100644
--- a/config/router.js
+++ b/config/router.js
@@ -14,6 +14,7 @@ FlowRouter.route('/', {
Filter.reset();
EscapeActions.executeAll();
+ Utils.manageCustomUI();
Utils.manageMatomo();
BlazeLayout.render('defaultLayout', {
@@ -40,6 +41,7 @@ FlowRouter.route('/b/:id/:slug', {
EscapeActions.executeUpTo('popup-close');
}
+ Utils.manageCustomUI();
Utils.manageMatomo();
BlazeLayout.render('defaultLayout', {
@@ -57,6 +59,7 @@ FlowRouter.route('/b/:boardId/:slug/:cardId', {
Session.set('currentBoard', params.boardId);
Session.set('currentCard', params.cardId);
+ Utils.manageCustomUI();
Utils.manageMatomo();
BlazeLayout.render('defaultLayout', {
@@ -122,6 +125,7 @@ FlowRouter.route('/setting', {
},
],
action() {
+ Utils.manageCustomUI();
BlazeLayout.render('defaultLayout', {
headerBar: 'settingHeaderBar',
content: 'setting',
@@ -199,20 +203,21 @@ _.each(redirections, (newPath, oldPath) => {
// using the `kadira:dochead` package. Currently we only use it to display the
// board title if we are in a board page (see #364) but we may want to support
// some <meta> tags in the future.
-const appTitle = 'Wekan';
+//const appTitle = Utils.manageCustomUI();
// XXX The `Meteor.startup` should not be necessary -- we don't need to wait for
// the complete DOM to be ready to call `DocHead.setTitle`. But the problem is
// that the global variable `Boards` is undefined when this file loads so we
// wait a bit until hopefully all files are loaded. This will be fixed in a
// clean way once Meteor will support ES6 modules -- hopefully in Meteor 1.3.
-Meteor.isClient && Meteor.startup(() => {
- Tracker.autorun(() => {
- const currentBoard = Boards.findOne(Session.get('currentBoard'));
- const titleStack = [appTitle];
- if (currentBoard) {
- titleStack.push(currentBoard.title);
- }
- DocHead.setTitle(titleStack.reverse().join(' - '));
- });
-});
+//Meteor.isClient && Meteor.startup(() => {
+// Tracker.autorun(() => {
+
+// const currentBoard = Boards.findOne(Session.get('currentBoard'));
+// const titleStack = [appTitle];
+// if (currentBoard) {
+// titleStack.push(currentBoard.title);
+// }
+// DocHead.setTitle(titleStack.reverse().join(' - '));
+// });
+//});