Pull request#24
Conversation
HectorBlisS
left a comment
There was a problem hiding this comment.
Los comentarios en los commits pueden mejorar mucho, "modifique mani.js" por ejemplo no dice nada, no es util el comentario, y eviten el español a toda costa, muy bien el trabajo progresivo y en equipo, pero deben arreglar el usuario para que no aparezca gris, cómo anónimo. Muy bien por el proyecto y el uso de fetch!
| left: 0; | ||
| width: 560px; | ||
| height: 315px; | ||
| top: 1580px; |
There was a problem hiding this comment.
El usar pixeles fijos, evita que sea responsivo
| }); | ||
| } | ||
|
|
||
| window.onload = traer(); |
There was a problem hiding this comment.
Esto no es necesario si el script está hasta el final de body, eviten las funciones en español
| <article class= "inter"> | ||
| <div> | ||
|
|
||
| <iframe width="560" height="315" src="https://www.youtube.com/embed/V6SfEIoEHY0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
There was a problem hiding this comment.
Los iframes se evitan a toda costa, pueden crear huecos de seguridad
|
|
||
| ## 8. Prototipo final | ||
|
|
||
| <img src="https://github.com/AndyyAg/CDMX009-Data-Lovers/blob/master/images/prototipofinal.png"> |
There was a problem hiding this comment.
Bien por el uso de imagenes locales
| @@ -90,46 +90,46 @@ visualizar y manipular data. | |||
|
|
|||
| ### UX | |||
There was a problem hiding this comment.
El usuario configurado en global de la termina no coincide con el usuario de Github por eso aparece así en gris y sin foto
| color: #ffffff; | ||
| } | ||
|
|
||
| .modal-window header { |
There was a problem hiding this comment.
Bien los nombres de las clases
| div = appendChild('div'); | ||
| img.src = character.image; | ||
| characters.innerHTML = `${character.name}`; | ||
| append(li, img); |
There was a problem hiding this comment.
Bien por el uso de funciones para evitar repetición de código
| div = appendChild('div'); | ||
| img.src = character.image; | ||
| span.innerHTML = `${character.name}`; | ||
| characters.innerHTML = `${character.name}`; |
There was a problem hiding this comment.
Si no se mezcla text y variables no es necesario usar ``podría ser solo characters.innerText = "character.name"
| @@ -42,10 +44,10 @@ function traer() { | |||
| fetch(api + input.value) | |||
There was a problem hiding this comment.
Excelente por el uso de la API
:)