0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

🎨 fix path of nav menu ghost icon (#317)

refs TryGhost/Ghost#7503
This commit is contained in:
Austin Burdine 2016-10-08 06:16:45 -05:00 committed by Hannah Wolfe
parent 0b743890af
commit 4af9e8e3ff

View file

@ -11,7 +11,7 @@ export default Component.extend({
open: false,
navMenuIcon: computed('ghostPaths.subdir', function () {
let url = `${this.get('ghostPaths.subdir')}/ghost/img/ghosticon.jpg`;
let url = `${this.get('ghostPaths.assetRoot')}/img/ghosticon.jpg`;
return htmlSafe(`background-image: url(${url})`);
}),