Messages now play notification sounds.
This commit is contained in:
parent
976e157cf1
commit
e85fb18ce5
3 changed files with 51 additions and 2 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue