-
Notifications
You must be signed in to change notification settings - Fork 21
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
permite dumpear todos los zumbadores sin tener que marcar las casillas #82
Conversation
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.
sólo confirmando: verificaste que los archivos que guardaste tienen <despliega tipo="universo" />
? si los lees se activa ese botón? (según el código sí debería ocurrir, pero más vale estar seguros).
index.html
Outdated
@@ -241,6 +241,7 @@ | |||
<button class="btn button-primary" data-toggle="tooltip" title="La solución depende de la posición final de Karel" id="posicion_karel">Posición final</button> | |||
<button class="btn button-primary" data-toggle="tooltip" title="La solución depende de la orientación final de Karel" id="orientacion_karel">Orientación final</button> | |||
<button class="btn button-primary" data-toggle="tooltip" title="La solución depende del estado final de la mochila de Karel" id="mochila_karel">Mochila final</button> | |||
<button class="btn button-primary" data-toggle="tooltip" title="La soluci+on depende de todos los zumbadores en el mundo" id="universe">Todos los zumbadores</button> |
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.
cero compromiso con los acentos :P (s/soluci+on/solución/
)
js/main.js
Outdated
@@ -635,6 +635,7 @@ $(document).ready(function(){ | |||
$("#posicion_karel").attr('disabled', 'disabled'); | |||
$("#orientacion_karel").attr('disabled', 'disabled'); | |||
$("#mochila_karel").attr('disabled', 'disabled'); | |||
$("#universe").attr('disabled', 'disabled'); |
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.
#universo
. el resto de los id están en español.
closes #67