mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-31 06:34:40 +00:00
* textcolor: fixed plugin bugs, added translation for zh * image: fixed default.jpg src bug * added 'ru' support for seaf edit * rm aloha-0.22.3 and ununsed files in aloha-0.22.7
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;
|
|
});
|