mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-27 18:52:14 +03:00
Merge pull request #5268 from ErisDS/issue-5258
Fixing 'undefined' issue with ghostPaths.url.join
This commit is contained in:
commit
0fb137e94d
@ -1,9 +1,9 @@
|
||||
import Ember from 'ember';
|
||||
// Handlebars Helper {{gh-path}}
|
||||
// Usage: Assume 'http://www.myghostblog.org/myblog/'
|
||||
// {{gh-path}} or {{gh-path ‘blog’}} for Ghost’s root (/myblog/)
|
||||
// {{gh-path ‘admin’}} for Ghost’s admin root (/myblog/ghost/)
|
||||
// {{gh-path ‘api’}} for Ghost’s api root (/myblog/ghost/api/v0.1/)
|
||||
// {{gh-path}} or {{gh-path 'blog'}} for Ghost's root (/myblog/)
|
||||
// {{gh-path 'admin'}} for Ghost's admin root (/myblog/ghost/)
|
||||
// {{gh-path 'api'}} for Ghost's api root (/myblog/ghost/api/v0.1/)
|
||||
// {{gh-path 'admin' '/assets/hi.png'}} for resolved url (/myblog/ghost/assets/hi.png)
|
||||
import ghostPaths from 'ghost/utils/ghost-paths';
|
||||
|
||||
|
@ -10,7 +10,9 @@ var makeRoute = function (root, args) {
|
||||
parts = Array.prototype.slice.call(args, 0);
|
||||
|
||||
parts.forEach(function (part) {
|
||||
route = [route, part.replace(slashAtStart, '').replace(slashAtEnd, '')].join('/');
|
||||
if (part) {
|
||||
route = [route, part.replace(slashAtStart, '').replace(slashAtEnd, '')].join('/');
|
||||
}
|
||||
});
|
||||
return route += '/';
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user