Editor

Pages are Akumen’s customizable UI’s. They can be built using HTML, JavaScript, and CSS.

Multiple files and folders can be created in the file explorer to the left. To specify the main entry point for Akumen, one of the html files must be specified as the startup file. The first html file created is set by default as the startup file. It can be changed to an other suitable file from the context menu in the file explorer.

Javascript files are always loaded into the browser, however html and image files are not loaded, with the exception of the startup file.

To include other html files, create a <div id="tech_spec"></div> element with an id, and use the attachHtmlToDiv inbuilt javascript function to attach the javascript file. For example, to attach the html/tech_spec.html file, use the following code

attachHtmlToDiv('html/tech_spec.html', 'tech_spec');