mirror of
				https://github.com/Mastermindzh/tidal-hifi.git
				synced 2025-10-31 16:59:09 +01:00 
			
		
		
		
	- consolidated updating the media info changes with the status changes into a single global event
		
			
				
	
	
		
			15 lines
		
	
	
		
			301 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			301 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const globalEvents = {
 | |
|   play: "play",
 | |
|   pause: "pause",
 | |
|   playPause: "playPause",
 | |
|   next: "next",
 | |
|   previous: "previous",
 | |
|   updateInfo: "update-info",
 | |
|   hideSettings: "hideSettings",
 | |
|   showSettings: "showSettings",
 | |
|   storeChanged: "storeChanged",
 | |
|   error: "error",
 | |
| };
 | |
| 
 | |
| module.exports = globalEvents;
 |