mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
fix order of plugin template resolution
This commit is contained in:
parent
d2e1fccc90
commit
422941a606
1 changed files with 2 additions and 2 deletions
|
@ -115,8 +115,8 @@ export default Ember.DefaultResolver.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
resolveTemplate(parsedName) {
|
resolveTemplate(parsedName) {
|
||||||
return this.findPluginTemplate(parsedName) ||
|
return this.findPluginMobileTemplate(parsedName) ||
|
||||||
this.findPluginMobileTemplate(parsedName) ||
|
this.findPluginTemplate(parsedName) ||
|
||||||
this.findMobileTemplate(parsedName) ||
|
this.findMobileTemplate(parsedName) ||
|
||||||
this.findTemplate(parsedName) ||
|
this.findTemplate(parsedName) ||
|
||||||
Ember.TEMPLATES.not_found;
|
Ember.TEMPLATES.not_found;
|
||||||
|
|
Loading…
Reference in a new issue