Created
October 2, 2019 15:56
-
-
Save phwb/1760dc8bf413aa5127654d4491a399fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// создание (или генерация) одного пина | |
function createPin() {/*...*/} | |
// создание списка пинов | |
function createPins() {/*...*/} | |
// создание DOM элемента | |
function createPinsElement() {/*...*/} | |
// создание детальной карточки пина | |
function createCart() {/*...*/} | |
// активация карты, добавление пинов и тд | |
function activateMap() {/*...*/} | |
// деактивация карты | |
function deactivateMap() {/*...*/} | |
// активация формы | |
function activateForm() {/*...*/} | |
// валидация формы | |
function validateForm() {/*...*/} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment