This commit is contained in:
the-djmaze 2024-03-17 15:49:36 +01:00
parent b99c405202
commit 2d1a760df3
41 changed files with 51 additions and 0 deletions

View file

@ -420,6 +420,11 @@ export class MessageModel extends AbstractModel {
return this.viewBody(false);
}
swapColors() {
const cl = this.body?.classList;
cl && cl.toggle('swapColors');
}
/**
* @param {boolean=} print = false
*/