mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
b16284f1ed
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;
|