-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathhelpViewer.html
More file actions
41 lines (40 loc) · 1.55 KB
/
helpViewer.html
File metadata and controls
41 lines (40 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!--
Project Name : Visual Python
Description : GUI-based Python code generator
File Name : helpViewer.html
Author : Black Logic
Note : Help viewer
License : GNU GPLv3 with Visual Python special exception
Date : 2023. 07. 13
Change Date :
-->
<!-- use body tag to strip comments out on requirejs/text plugin -->
<body>
<div class="vp-popup-frame">
<div class="vp-popup-header">
<!-- CHROME: title is a handler for draggable, but for some reason label tag's width is not controllable. changed tag: label -> div -->
<div class="vp-popup-title">
<!-- Title -->
Help viewer
</div>
<div class="vp-popup-maximize" title="Maximize this popup"></div>
<div class="vp-popup-return" title="Return size of this popup"></div>
<div class="vp-popup-close" title="Close popup"></div>
</div>
<div class="vp-popup-body vp-scrollbar">
<!-- Body -->
<div class="vp-popup-content">
<!-- <textarea id="helpContent" class="wp100"></textarea> -->
<pre id="helpContent">
</pre>
</div>
</div>
<div class="vp-popup-footer">
<!-- Footer -->
<!-- Button box -->
<div class="vp-popup-button-box">
<button type="button" class="vp-button vp-popup-button" data-type="cancel">Cancel</button>
</div>
</div>
</div>
</body>