forked from WycliffeAssociates/en_btr_frontend
Fix transition bug caused by <a href="#"></a> calling a separate action with transitionTo()
This commit is contained in:
parent
14ade53db5
commit
304a496ab6
|
@ -1,2 +1,2 @@
|
|||
<a href="#" {{on "click" this.selectBook}}>{{this.bookTitle}}</a>
|
||||
<a {{on "click" this.selectBook}}>{{this.bookTitle}}</a>
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
<a href="#" {{on "click" this.selectChapter}} >{{@chapter.chapter}}</a>
|
||||
<a {{on "click" this.selectChapter}} >{{@chapter.chapter}}</a>
|
||||
|
|
|
@ -1 +1 @@
|
|||
<a href="#" {{on "click" this.selectVerse }}>{{@verse}}</a>
|
||||
<a {{on "click" this.selectVerse }}>{{@verse}}</a>
|
||||
|
|
|
@ -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';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue