mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-01 15:29:19 +03:00
3c5df473d1
Accessing `this` inside an `Ember.HTMLBars.makeBoundHelper` will not always return the containing `view` object. Instead, use a component.
8 lines
112 B
JavaScript
8 lines
112 B
JavaScript
import Ember from 'ember';
|
|
|
|
var blogUrl = Ember.Component.extend({
|
|
tagName: ''
|
|
});
|
|
|
|
export default blogUrl;
|