-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HW5 #8
base: master
Are you sure you want to change the base?
HW5 #8
Conversation
Можно создавать и выводить объекты. Сейчас будет приделывать старые/новые коды к этому интерфейсу.
Надо бы ещё добавиться валидацию формы...
Связал с классами событий и колекций. Проблема с удалением элементов удаляется только половина потомков.
|
||
/////////////////Описание обработчика добавления события//////////////// | ||
addButton = document.getElementById('createButton'); | ||
addButton.addEventListener('click', function(event){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Функция очень перегружена. Есть такая практика, что обработчик события должен быть максимально разгруженным буквально пара строк.
addButton.addEventListener('click', function(event) {
doFirst();
doSecond();
});
Прописываю тебе JSLint 2 раза в день :) |
4 задание пропущено BTW |
|
||
|
||
|
||
var Collection = function(data){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вынеси каждый конструктор в отдельный файл
Немного работает, но возникли проблемы с удалением элементов.