mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
Merge pull request #5268 from ErisDS/issue-5258
Fixing 'undefined' issue with ghostPaths.url.join
This commit is contained in:
commit
4e3c469ff8
2 changed files with 6 additions and 4 deletions
|
@ -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…
Add table
Reference in a new issue