31 lines
401 B
JavaScript
31 lines
401 B
JavaScript
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
} |