mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
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;
|