Last active
October 2, 2019 16:50
-
-
Save phwb/fb6801fcb8133004233c134700ea36f8 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() { | |
// создание (или генерация) одного пина | |
function createPin() {/*...*/} | |
// создание списка пинов | |
function createPins() {/*...*/} | |
// создание DOM элемента | |
function createPinsElement(pins) {/*...*/} | |
// создание детальной карточки пина | |
function createCartElement() {/*...*/} | |
// наружу экспортируем не все функции, а только те что нужны для работы | |
// то есть создание массива пинов и создание элемента из этого списка | |
window.pin = { | |
createPins, | |
createPinsElement | |
}; | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment