Fix transition bug caused by <a href="#"></a> calling a separate action with transitionTo()

This commit is contained in:
Leonard Smith 2020-10-06 17:06:12 -05:00
parent 14ade53db5
commit 304a496ab6
4 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
<a href="#" {{on "click" this.selectBook}}>{{this.bookTitle}}</a>
<a {{on "click" this.selectBook}}>{{this.bookTitle}}</a>

View File

@ -1 +1 @@
<a href="#" {{on "click" this.selectChapter}} >{{@chapter.chapter}}</a>
<a {{on "click" this.selectChapter}} >{{@chapter.chapter}}</a>

View File

@ -1 +1 @@
<a href="#" {{on "click" this.selectVerse }}>{{@verse}}</a>
<a {{on "click" this.selectVerse }}>{{@verse}}</a>

View File

@ -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';
}