24 lines
		
	
	
		
			717 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			717 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<body>
 | 
						|
  <style>
 | 
						|
    path {
 | 
						|
      fill: none;
 | 
						|
      stroke: blue;
 | 
						|
      stroke-width: 1px;
 | 
						|
      stroke-linejoin: round;
 | 
						|
      stroke-linecap: round;
 | 
						|
    }
 | 
						|
  </style>
 | 
						|
  <button type="button" id="clearDrawingCanvas">Clear Drawing</button>
 | 
						|
  <svg id="drawingCanvas" viewbox="0 0 100 100" width="100%"></svg>
 | 
						|
  <script src="../../y.js"></script>
 | 
						|
  <script src="../../../y-array/y-array.js"></script>
 | 
						|
  <script src="../../../y-map/dist/y-map.js"></script>
 | 
						|
  <script src="../../../y-memory/y-memory.js"></script>
 | 
						|
  <script src="../../../y-websockets-client/y-websockets-client.js"></script>
 | 
						|
  <script src="../bower_components/d3/d3.js"></script>
 | 
						|
  <script src="./index.js"></script>
 | 
						|
</body>
 | 
						|
</html>
 |