-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Een aparte TAB werd toegevoegd in de applicatie voor documentatie.
- Na de aanpassing van het menu, inbouwen van functionaliteit om in de online versie het menu te kunnen aanpassen. - Enkele aanpassingen in de CSS om de mouse-pointer beter af te stemmen op de web-items.
- Loading branch information
Showing
8 changed files
with
77 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
var CONF_builddate="20241117-113745" | ||
var CONF_builddate="20241123-120000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* FUNCTION showFilePage | ||
Shows the Documentation-Page. | ||
*/ | ||
|
||
function showDocumentationPage() { | ||
|
||
let strleft = ` | ||
<table border="1px" style="border-collapse:collapse" align="center" width="100%"> | ||
<tr> | ||
<td width="100%" align="center" bgcolor="LightGrey"> | ||
<b>Handleiding</b> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td width="100%" align="left"> | ||
<table border=0> | ||
<tr> | ||
<td width=100 style="vertical-align:top;padding:5px"> | ||
<button style="font-size:14px" id="Btn_downloadManual">Download</button> | ||
</td> | ||
<td style="vertical-align:top;padding:7px"> | ||
Een volledige handleiding is beschikbaar in PDF formaat. | ||
Click link op "Download" om deze in een ander venster te openen. | ||
<br> | ||
Het programma is in volle ontwikkeling dus delen van de handleiding zijn | ||
mogelijk ietwat verouderd. | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
</table>`; | ||
|
||
document.getElementById("configsection").innerHTML = strleft; | ||
hide2col(); | ||
|
||
(document.getElementById('Btn_downloadManual') as HTMLElement).onclick = () => { window.open('Documentation/edsdoc.pdf', '_blank') }; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters