mirror of
				https://github.com/gristlabs/grist-core.git
				synced 2025-06-13 20:53:59 +00:00 
			
		
		
		
	Summary: - Custom widget tests are now in grist-core - Adding buildtools for grist-plugin-api.js Test Plan: Existing tests Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3617
		
			
				
	
	
		
			17 lines
		
	
	
		
			348 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			348 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <meta charset="utf-8" />
 | 
						|
    <style>
 | 
						|
html, body { height: 100%; }
 | 
						|
#outside { display: block; height: 15%; width: 100%; }
 | 
						|
#embed { height: 70%; width: 100%; }
 | 
						|
    </style>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <h3>Embed Grist</h3>
 | 
						|
    <textarea id='outside'></textarea>
 | 
						|
    <iframe id='embed' src=""></iframe>
 | 
						|
  </body>
 | 
						|
</html>
 |