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
package-lock.json
dist/.DS_Store
src/.#core.js

View File

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