Messages now play notification sounds.

This commit is contained in:
rainbow napkin 2025-10-06 21:21:54 -04:00
parent 976e157cf1
commit e85fb18ce5
3 changed files with 51 additions and 2 deletions

View file

@ -297,6 +297,11 @@ class canopyUXUtils{
}
playSound(url){
const audio = new Audio(url);
audio.play();
}
newTableRow(cellContent){
//Create an empty table row to hold the cells
const entryRow = document.createElement('tr');