26 lines
		
	
	
		
			482 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			482 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <title>测试editor</title>
 | |
|     <script src="../dep/esl.js"></script>
 | |
|     <script src="../dep/jquery.min.js"></script>
 | |
| </head>
 | |
| <body>
 | |
|     <script>
 | |
|         require.config({
 | |
|             baseUrl: '../src',
 | |
|             paths: {
 | |
|                 demo: '../demo/js',
 | |
|             }
 | |
|         });
 | |
|         define('jquery', $);
 | |
|     </script>
 | |
| 
 | |
|     <script>
 | |
|         require(['demo/datastore']);
 | |
|     </script>
 | |
| 
 | |
| </body>
 | |
| </html>
 | 
