diff --git a/app/Resources/views/solicitudes/ascenso.html.twig b/app/Resources/views/solicitudes/ascenso.html.twig
index c630c46..83e92f9 100644
--- a/app/Resources/views/solicitudes/ascenso.html.twig
+++ b/app/Resources/views/solicitudes/ascenso.html.twig
@@ -41,7 +41,7 @@
Requisitos solicitud ascenso {{ nueva_escala.nombre }}
{% form_theme form 'bootstrap_3_layout.html.twig' %}
- {{ form_start(form) }}
+ {{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }}
{{ form_widget(form) }}
{{ form_end(form) }}
@@ -141,9 +141,6 @@
$('#ascenso_tipoTrabajoInvestigacion').click(function() {
- alert("click");
-
-
if($('#ascenso_tipoTrabajoInvestigacion').val() === 'investigacion'){
$('.esc_investigacion').show();
$('.esc_tesis').hide();
@@ -153,7 +150,6 @@
$('.esc_tesis').show();
$("#ascenso_tutores_ascenso_chosen").hide();
}
-
});
@@ -252,7 +248,6 @@
$("#ascenso_tutores_ascenso").on("chosen:ready", function() {
$("#ascenso_tutores_ascenso_chosen").hide();
- alert("hidden");
});