mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			213 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			213 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const notificationAudio = require('shared/assets/audio/ding.mp3');
 | 
						|
 | 
						|
export const playNotificationAudio = () => {
 | 
						|
  try {
 | 
						|
    new Audio(notificationAudio).play();
 | 
						|
  } catch (error) {
 | 
						|
    console.log(error);
 | 
						|
  }
 | 
						|
};
 |