mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
export default Ember.Mixin.create({
|
|
init() {
|
|
this._super();
|
|
(this.get('delegated') || []).forEach(m => this.set(m, m));
|
|
},
|
|
});
|