Merge pull request #4434 from angusmcleod/template-resolution-order

fix order of plugin template resolution
This commit is contained in:
Robin Ward 2016-09-02 14:26:02 -04:00 committed by GitHub
commit 574a4d7758
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@ export default Ember.DefaultResolver.extend({
},
resolveTemplate(parsedName) {
return this.findPluginTemplate(parsedName) ||
this.findPluginMobileTemplate(parsedName) ||
return this.findPluginMobileTemplate(parsedName) ||
this.findPluginTemplate(parsedName) ||
this.findMobileTemplate(parsedName) ||
this.findTemplate(parsedName) ||
Ember.TEMPLATES.not_found;