2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

FIX: Mobile raw templates were not being resolved

This commit is contained in:
Robin Ward 2016-12-13 10:53:08 -05:00
parent a149913c4d
commit ea3db56d1c
12 changed files with 36 additions and 17 deletions

View file

@ -10,6 +10,10 @@ export function setResolverOption(name, value) {
_options[name] = value;
}
export function getResolverOption(name) {
return _options[name];
}
function parseName(fullName) {
const nameParts = fullName.split(":");
const type = nameParts[0];