welsonjs/app.hta

70 lines
3.0 KiB
Plaintext
Raw Permalink 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">
2022-11-28 17:52:02 +00:00
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
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"
Version="0.2.7.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" />
<meta name="description" content="WelsonJS, Build a Windows app on the Windows built-in JavaScript engine" />
2020-07-18 19:50:31 +00:00
<meta name="keywords" content="webapp" />
2022-11-25 17:21:05 +00:00
<meta name="author" content="abuse@catswords.net" />
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" />
2021-12-09 03:03:33 +00:00
<link type="image/png" rel="shortcut icon" href="app/assets/img/7418_blocks_color_modules_rgb_square_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-11-04 07:40:01 +00:00
<div id="loading"></div>
<div id="app"></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[
2021-08-10 06:27:47 +00:00
initializeWindow("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>