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

31 lines
401 B
JavaScript
Raw Normal View History

2025-12-25 11:16:59 +01:00
import commentTitle from '../comment.title.js';
export default class commentEditTitle extends commentTitle{
useCustomElement = false;
borderLeft = "solid 1px #faebd7";
borderRight = "solid 1px #faebd7";
enableInput() {
this.background = "#373b44";
this.useCustomElement = true;
}
disableInput() {
this.background = "white";
this.useCustomElement = false;
}
}