mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
|
function (ed) {
|
||
|
ed.on('init', function(e){
|
||
|
toot_editor.init(e);
|
||
|
});
|
||
|
|
||
|
ed.on('keyup', function(e){
|
||
|
toot_editor.generate_toot();
|
||
|
});
|
||
|
|
||
|
}
|