Posts by Edno Fedulo • 61 points
2 posts
-
2
votes1
answer424
viewsA: Block commits on Github
If you added it as a contributor, you can’t reject it. If he’s not a contributor, he has to do a Pull Request with his commit and you as the repository owner can accept or not.
-
1
votes1
answer565
viewsA: change color only of clicked element
$(this).closest(".taskToDo").addClass("taskToDoBackground"); When you make the $(".taskToDo"), this selector returns all elements with this class. you have to use the . Closest() to return only the…
jqueryanswered Edno Fedulo 61