1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-23 17:20:29 +00:00
seahub/media/aloha-0.22.7/plugins/common/ui/lib/arena.js

12 lines
247 B
JavaScript
Raw Normal View History

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;
});