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