Files
Unify/application/demo/comment/comment.title.js

41 lines
514 B
JavaScript
Raw Permalink Normal View History

2025-12-25 11:16:59 +01:00
import column from '/unify/column.js';
export default class title extends column {
padding = 20;
color = "black";
label = "title";
useCustomElement = true;
async keyup( event ){
this.value = event.target.value;
this.animate(150, 400, function( value ){
this.height = value;
})
var result = await this.socketManager.get( "column", "update", this, "keyup" );
}
serverKeyup( object ) {
this.value = object.value;
}
}