Posts by Denali • 1 point
2 posts
-
0
votes0
answers65
viewsQ: How to stop text cursor from going at the end using $Scope. $watch? Angularjs
How do I stop the text cursor from jumping on the last line of a textarea? //textarea $watch $scope.$watch('string', function(s){ var string = s.split('\n'); if(string.length > 0) { var…
-
0
votes1
answer95
viewsQ: Quiz Database Schema for Mongodb
Users: [{ - email - senha - quiz_criado: [id: 1], // ref: Quiz (array com id) - quiz_respondido: [{ id: 1 , // ref: Quiz question_respondido: [{ question_id opcao_escolhida }] }] }] Quiz: [{ -…