0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/app/components/gh-blog-url.js
Robert Jackson b16284f1ed Replace gh-blog-url helper with a component.
Accessing `this` inside an `Ember.HTMLBars.makeBoundHelper` will not
always return the containing `view` object. Instead, use a component.
2015-05-05 14:40:18 -04:00

7 lines
112 B
JavaScript

import Ember from 'ember';
var blogUrl = Ember.Component.extend({
tagName: ''
});
export default blogUrl;