From 304a496ab6d130c90fcea765a1b3171bcdd9b5b4 Mon Sep 17 00:00:00 2001 From: Leonard Smith Date: Tue, 6 Oct 2020 17:06:12 -0500 Subject: [PATCH] Fix transition bug caused by calling a separate action with transitionTo() --- app/components/book.hbs | 2 +- app/components/chapter.hbs | 2 +- app/components/verse.hbs | 2 +- config/environment.js | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/components/book.hbs b/app/components/book.hbs index 1376ec7..0ddf0a6 100644 --- a/app/components/book.hbs +++ b/app/components/book.hbs @@ -1,2 +1,2 @@ -{{this.bookTitle}} +{{this.bookTitle}} diff --git a/app/components/chapter.hbs b/app/components/chapter.hbs index 5bf363b..7204218 100644 --- a/app/components/chapter.hbs +++ b/app/components/chapter.hbs @@ -1 +1 @@ -{{@chapter.chapter}} +{{@chapter.chapter}} diff --git a/app/components/verse.hbs b/app/components/verse.hbs index 427eadb..29dc31a 100644 --- a/app/components/verse.hbs +++ b/app/components/verse.hbs @@ -1 +1 @@ -{{@verse}} +{{@verse}} diff --git a/config/environment.js b/config/environment.js index ce07244..9c4b70c 100644 --- a/config/environment.js +++ b/config/environment.js @@ -35,8 +35,8 @@ module.exports = function(environment) { if (environment === 'development') { // ENV.APP.LOG_RESOLVER = true; // ENV.APP.LOG_ACTIVE_GENERATION = true; - // ENV.APP.LOG_TRANSITIONS = true; - // ENV.APP.LOG_TRANSITIONS_INTERNAL = true; + ENV.APP.LOG_TRANSITIONS = true; + ENV.APP.LOG_TRANSITIONS_INTERNAL = true; // ENV.APP.LOG_VIEW_LOOKUPS = true; ENV.APP.hostUrl = 'http://gwt.api'; }