mirror of
https://github.com/discourse/discourse.git
synced 2025-02-14 01:32:45 +08:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
Discourse.UnknownView = Em.View.extend({
|
|
classNameBindings: [':container'],
|
|
|
|
render: function(buffer) {
|
|
buffer.push(this.get('controller.model'));
|
|
}
|
|
});
|