mirror of
				https://github.com/gnh1201/welsonjs.git
				synced 2025-10-31 21:07:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 | |
|       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 | |
|     <head>
 | |
|         <!--
 | |
|             @tag hta:application
 | |
|             
 | |
|             @attribute ApplicationName   Sets the name of the HTA.
 | |
|             
 | |
|             @attribute Border            [Thick]|Thin|None
 | |
|             @attribute BorderStyle       [Normal]|Raised|Sunken|Complex|Static
 | |
|             @attribute InnerBorder       [Yes]|No
 | |
|             @attribute Caption           [Yes]|No
 | |
|             @attribute ContextMenu       [Yes]|No
 | |
|             @attribute Icon              Path/To/Icon.ico
 | |
|             @attribute MaximizeButton    [Yes]|No
 | |
|             @attribute MinimizeButton    [Yes]|No
 | |
|             @attribute Navigable         [Yes]|No
 | |
|             @attribute Scroll            [Auto]|Yes|No
 | |
|             @attribute ScrollFlat        [Auto]|Yes|No
 | |
|             @attribute Selection         [Yes]|No
 | |
|             @attribute ShowInTaskbar     [Yes]|No
 | |
|             @attribute SingleInstance    [Yes]|No
 | |
|             @attribute SysMenu           [Yes]|No (Setting to No will remove close button)
 | |
|             @attribute WindowsState      [Normal]|Minimize|Maximize
 | |
|             -->
 | |
|         <hta:application
 | |
|             ID="WELSONJS_WINDOW"
 | |
|             Version="0.2.7.2"
 | |
|             ApplicationName="WelsonJS"
 | |
|             Border="None"
 | |
|             BorderStyle="Static"
 | |
|             InnerBorder="No"
 | |
|             Caption="No"
 | |
|             Icon="app/favicon.ico"
 | |
|             ContextMenu="No"
 | |
|             MaximizeButton="No"
 | |
|             MinimizeButton="No"
 | |
|             Navigable="No"
 | |
|             Scroll="No"
 | |
|             ScrollFlat="Yes"
 | |
|             Selection="No"
 | |
|             ShowInTaskbar="Yes"
 | |
|             SingleInstance="Yes"
 | |
|             SysMenu="Yes"
 | |
|             WindowState="Normal"
 | |
|             Selection="No"
 | |
|             />
 | |
|         <title>Welcome to WelsonJS application</title>
 | |
|         <meta http-equiv="X-UA-Compatible" content="IE=9" />
 | |
|         <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
 | |
|         <meta name="description" content="WelsonJS, Build a Windows app on the Windows built-in JavaScript engine" />
 | |
|         <meta name="keywords" content="webapp" />
 | |
|         <meta name="author" content="gnh1201@catswords.re.kr" />
 | |
|         <meta name="generator" content="welsonjs" />
 | |
|         <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|         <link type="image/x-icon" rel="icon" href="app/favicon.ico" />
 | |
|         <link type="image/png" rel="shortcut icon" href="app/assets/img/7418_blocks_color_modules_rgb_square_icon.png" />
 | |
|         <link type="text/css" rel="stylesheet" href="app/style.css" />
 | |
|     </head>
 | |
|     <body>
 | |
|         <div id="loading"></div>
 | |
|         <div id="app"></div>
 | |
|         <script src="app.js" type="text/javascript" charset="utf-8"></script>
 | |
|         <script type="text/javascript">//<!--<![CDATA[
 | |
|             initializeWindow("webloader", [WELSONJS_WINDOW.commandLine], 800, 600);
 | |
|         //]]>--></script>
 | |
|     </body>
 | |
| </html>
 |