Skip to content

Instantly share code, notes, and snippets.

@dennisat
dennisat / DebugKeyboard.js
Created July 17, 2020 12:44
Debug Keyboard for Javascript
(() => {
window.addEventListener('keydown', e => {
if (!e.ctrlKey) return;
if (e.code === 'KeyC') console.clear();
if (e.code === 'KeyS') console.debug('----');
if (e.code === 'KeyD') debugger;
});
console.debug('Debug keyboard loaded');
})();
@dennisat
dennisat / Clubform Builder Documentation for DGWs.md
Last active July 16, 2020 17:48
Clubform Builder Documentation for DGWs

Clubform Builder Documentation for DGWs

Builder Usage

The clubform builder is a text editor that helps build the JSON to define a form. A forms look/style is defined by it's layout type. (Right now, there is only one)

Layout Style Description
Traditional How clubforms looked and operated before the builder was made.
Traditional JSON Example (No buttons)