mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-23 17:20:29 +00:00
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
|
define(['jquery', 'ui/component'],function($, Component){
|
||
|
var Arena = Component.extend({
|
||
|
init: function(){
|
||
|
this.element = $('<div>');
|
||
|
},
|
||
|
adopt: function(component) {
|
||
|
this.element.append(component.element);
|
||
|
}
|
||
|
});
|
||
|
return Arena;
|
||
|
});
|