Add comments

This commit is contained in:
Andros Fenollosa 2020-07-04 16:59:34 +02:00
parent ec4566e023
commit eb6f74f532
2 changed files with 7 additions and 1 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ node_modules/
dist/ffnm.min.js.map dist/ffnm.min.js.map
package-lock.json package-lock.json
dist/.DS_Store dist/.DS_Store
src/.#core.js

View File

@ -12,6 +12,7 @@ document.addEventListener('DOMContentLoaded', () => {
//=== //===
// FUNCTIONS // FUNCTIONS
//=== //===
/** /**
* Method that validates syntax and reports. * Method that validates syntax and reports.
* return - Bool * return - Bool
@ -42,6 +43,10 @@ document.addEventListener('DOMContentLoaded', () => {
}).every(event => event); }).every(event => event);
} }
/**
* Method add events click
* return void
*/
function addEventClick() { function addEventClick() {
} }