welsonjs/app.hta

71 lines
3.0 KiB
Plaintext
Raw Normal View History

2020-06-28 15:12:12 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2020-07-03 09:15:23 +00:00
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
2020-06-28 14:22:57 +00:00
<head>
<!--
@tag hta:application
2020-07-03 11:03:30 +00:00
@attribute ApplicationName Sets the name of the HTA.
2020-06-28 14:22:57 +00:00
2020-07-03 11:03:30 +00:00
@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
2020-06-28 14:22:57 +00:00
-->
<hta:application
2020-07-23 08:10:52 +00:00
ID="WELSONJS_WINDOW"
2020-07-21 07:22:39 +00:00
Version="0.1.2"
2020-07-21 07:21:42 +00:00
ApplicationName="WelsonJS"
2020-07-03 09:15:23 +00:00
Border="None"
2020-06-28 14:22:57 +00:00
BorderStyle="Static"
2020-07-03 11:03:30 +00:00
InnerBorder="No"
2020-07-03 09:15:23 +00:00
Caption="No"
2020-07-21 07:21:42 +00:00
Icon="app/favicon.ico"
2020-06-28 14:22:57 +00:00
ContextMenu="No"
MaximizeButton="No"
MinimizeButton="No"
Navigable="No"
Scroll="No"
2020-07-03 11:03:30 +00:00
ScrollFlat="Yes"
2020-06-28 14:22:57 +00:00
Selection="No"
ShowInTaskbar="Yes"
SingleInstance="Yes"
SysMenu="Yes"
WindowState="Normal"
2020-07-03 11:03:30 +00:00
Selection="No"
2020-06-28 14:22:57 +00:00
/>
2020-07-23 08:10:52 +00:00
<title>Welcome to WelsonJS application</title>
2020-07-07 05:26:14 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=9" />
2020-07-03 09:15:23 +00:00
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
2020-07-21 07:21:42 +00:00
<meta name="description" content="Welsonjs - Build a Windows desktop apps with JavaScript, HTML, and CSS based on WSH/HTA" />
2020-07-18 19:50:31 +00:00
<meta name="keywords" content="webapp" />
2020-07-03 09:15:23 +00:00
<meta name="author" content="gnh1201" />
2020-07-18 19:50:31 +00:00
<meta name="generator" content="welsonjs" />
2020-07-03 09:15:23 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2020-07-21 07:21:42 +00:00
<link type="image/x-icon" rel="icon" href="app/favicon.ico" />
2020-07-03 11:07:41 +00:00
<link type="image/png" rel="shortcut icon" href="app/assets/img/paper-plane-icon.png" />
2020-07-21 07:21:42 +00:00
<link type="text/css" rel="stylesheet" href="app/style.css" />
2020-06-28 14:22:57 +00:00
</head>
<body>
2020-07-31 06:50:24 +00:00
<div id="app">
<welsonjs-view></welsonjs-view>
</div>
2020-07-03 09:15:23 +00:00
<script src="app.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">//<!--<![CDATA[
2020-07-23 08:10:52 +00:00
init_window("webloader", [WELSONJS_WINDOW.commandLine], 800, 600);
2020-07-03 09:15:23 +00:00
//]]>--></script>
2020-06-28 14:22:57 +00:00
</body>
</html>