Skip to content

kd993595/Postit-Notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

About

Repository for sticky notes project

A screen where you can add different types of notes for various functions

[x]Notes [x]Dictionary [x]Calculator [x]Timer [x]Snake []Integral/Derivative calculator []Math Symbolizer more to be added later

Building

To build a redistributable, production mode package, use wails build.

Development

Functions called within top index.html must be posted into global window for html to be able to access. Standalone web pages put in PARTS folder of SRC to be displayed through iframes of main program. To add new note type must create add function for note in window.js using template for creating the iframe.

var add[FunctionName] = () => {
    let container = document.getElementById('main-container');
    let [newNoteType] = create(
        `<div class="part-container [newNoteType]" onmousedown = "goTop(this)" style="z-index:${returnTop()}"><div class="drag-bar" onmousedown="dragStart(this)"><p>[Note Title]</p></div><button onclick="closeWindow(this)">×</button><iframe src="[link to source code in Parts folder]"></iframe></div>`
    );
    container.appendChild([newNoteType]);
};
window.add[FunctionName] = add[FunctionName];

About

Board with different types of windows within it

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published