* fix: ensure context-menu emitted for draggable regions Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: address suggestions from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			320 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			320 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <title>Draggable Page</title>
 | 
						|
  <style>
 | 
						|
    .draggable {
 | 
						|
      -webkit-app-region: drag;
 | 
						|
      height: 100vh;
 | 
						|
      width: 100vw;
 | 
						|
      margin: 0;
 | 
						|
      background-color: #f0f0f0;
 | 
						|
    }
 | 
						|
  </style>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
  <div class="draggable"></div>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |