mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
6 lines
139 B
JavaScript
6 lines
139 B
JavaScript
export default Ember.Mixin.create({
|
|
init() {
|
|
this._super();
|
|
(this.get('delegated') || []).forEach(m => this.set(m, m));
|
|
},
|
|
});
|