mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
b16284f1ed
Accessing `this` inside an `Ember.HTMLBars.makeBoundHelper` will not always return the containing `view` object. Instead, use a component.
7 lines
112 B
JavaScript
7 lines
112 B
JavaScript
import Ember from 'ember';
|
|
|
|
var blogUrl = Ember.Component.extend({
|
|
tagName: ''
|
|
});
|
|
|
|
export default blogUrl;
|