57 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			57 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|  | <!doctype html> | ||
|  | <html> | ||
|  | <head> | ||
|  |     <meta charset="utf-8"> | ||
|  |     <meta http-equiv="X-UA-Compatible" content="chrome=1"> | ||
|  |     <title>JAVM</title> | ||
|  |     <link rel="stylesheet" href="styles.css"> | ||
|  |     <script src="../ext/respond.js"></script> | ||
|  |     <!--[if lt IE 9]>
 | ||
|  |     <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> | ||
|  |     <![endif]--> | ||
|  |     <!--[if lt IE 8]>
 | ||
|  |     <link rel="stylesheet" href="ie.css"> | ||
|  |     <![endif]--> | ||
|  |     <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | ||
|  |     <script src="../ext/respond.js"></script> | ||
|  |     <link rel="stylesheet" href="../ext/jquery-ui.css"> | ||
|  |     <script src="../ext/jquery.js"></script> | ||
|  |     <script src="../ext/jquery-ui.js"></script> | ||
|  |     <script src="../ext/underscore-min.js"></script> | ||
|  |     <script>Josh = {Debug: true };</script> | ||
|  |     <script src="killring.js"></script> | ||
|  |     <script src="history.js"></script> | ||
|  |     <script src="readline.js"></script> | ||
|  |     <script src="shell.js"></script> | ||
|  |     <script src="pathhandler.js"></script> | ||
|  |     <script src="example.js"></script> | ||
|  |     <style type="text/css"> | ||
|  |         #shell-panel { | ||
|  |             height: 200px; | ||
|  |             width: 100%; | ||
|  |             background-color: #002f05; | ||
|  |             color: #00fe00; | ||
|  |             padding: 20px 20px 20px 20px; | ||
|  |             font-family: 'Source Code Pro'; | ||
|  |             overflow: scroll; | ||
|  |             overflow-x: hidden; | ||
|  |             overflow-y: scroll; | ||
|  |             border: 1px dashed #E6EBE0; | ||
|  |         } | ||
|  | 
 | ||
|  |         #shell-cli .prompt { | ||
|  |             font-weight: bold; | ||
|  |         }</style> | ||
|  | </head> | ||
|  | <body> | ||
|  | <div class="wrapper"> | ||
|  | 
 | ||
|  | Drag bottom of shell to change size. | ||
|  | <div id="shell-panel" tabindex="0"> | ||
|  |     <div>Type <code>help</code> or hit <code>TAB</code> for a list of commands. | ||
|  |     </div> | ||
|  |     <div id="shell-view"></div> | ||
|  | </div> | ||
|  | </div> | ||
|  | </body> |